ctrl_dl           322 drivers/tty/nozomi.c 	struct ctrl_dl ctrl_dl;
ctrl_dl           652 drivers/tty/nozomi.c 			memset(&dc->port[i].ctrl_dl, 0, sizeof(struct ctrl_dl));
ctrl_dl           888 drivers/tty/nozomi.c 	struct ctrl_dl ctrl_dl;
ctrl_dl           889 drivers/tty/nozomi.c 	struct ctrl_dl old_ctrl;
ctrl_dl           892 drivers/tty/nozomi.c 	read_mem32((u32 *) &ctrl_dl, dc->port[PORT_CTRL].dl_addr[CH_A], 2);
ctrl_dl           894 drivers/tty/nozomi.c 	switch (ctrl_dl.port) {
ctrl_dl           930 drivers/tty/nozomi.c 	DBG1("0x%04X->0x%04X", *((u16 *)&dc->port[port].ctrl_dl),
ctrl_dl           931 drivers/tty/nozomi.c 	   *((u16 *)&ctrl_dl));
ctrl_dl           933 drivers/tty/nozomi.c 	old_ctrl = dc->port[port].ctrl_dl;
ctrl_dl           934 drivers/tty/nozomi.c 	dc->port[port].ctrl_dl = ctrl_dl;
ctrl_dl           936 drivers/tty/nozomi.c 	if (old_ctrl.CTS == 1 && ctrl_dl.CTS == 0) {
ctrl_dl           941 drivers/tty/nozomi.c 	} else if (old_ctrl.CTS == 0 && ctrl_dl.CTS == 1) {
ctrl_dl           954 drivers/tty/nozomi.c 	if (*(u16 *)&old_ctrl == *(u16 *)&ctrl_dl) {
ctrl_dl           959 drivers/tty/nozomi.c 	if (old_ctrl.CTS != ctrl_dl.CTS)
ctrl_dl           961 drivers/tty/nozomi.c 	if (old_ctrl.DSR != ctrl_dl.DSR)
ctrl_dl           963 drivers/tty/nozomi.c 	if (old_ctrl.RI != ctrl_dl.RI)
ctrl_dl           965 drivers/tty/nozomi.c 	if (old_ctrl.DCD != ctrl_dl.DCD)
ctrl_dl          1636 drivers/tty/nozomi.c 		if (port->ctrl_dl.CTS) {
ctrl_dl          1676 drivers/tty/nozomi.c 	const struct ctrl_dl *ctrl_dl = &port->ctrl_dl;
ctrl_dl          1683 drivers/tty/nozomi.c 		| (ctrl_dl->DCD ? TIOCM_CAR : 0)
ctrl_dl          1684 drivers/tty/nozomi.c 		| (ctrl_dl->RI  ? TIOCM_RNG : 0)
ctrl_dl          1685 drivers/tty/nozomi.c 		| (ctrl_dl->DSR ? TIOCM_DSR : 0)
ctrl_dl          1686 drivers/tty/nozomi.c 		| (ctrl_dl->CTS ? TIOCM_CTS : 0);