• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/pcmcia/ipwireless/

Lines Matching defs:linux_tty

53 	struct tty_struct *linux_tty;
116 static int ipw_open(struct tty_struct *linux_tty, struct file *filp)
118 int minor = linux_tty->index;
135 tty->linux_tty = linux_tty;
136 linux_tty->driver_data = tty;
137 linux_tty->low_latency = 1;
152 struct tty_struct *linux_tty = tty->linux_tty;
154 if (linux_tty != NULL) {
155 tty->linux_tty = NULL;
156 linux_tty->driver_data = NULL;
164 static void ipw_hangup(struct tty_struct *linux_tty)
166 struct ipw_tty *tty = linux_tty->driver_data;
182 static void ipw_close(struct tty_struct *linux_tty, struct file *filp)
184 ipw_hangup(linux_tty);
191 struct tty_struct *linux_tty;
195 linux_tty = tty->linux_tty;
196 if (linux_tty == NULL) {
207 work = tty_insert_flip_string(linux_tty, data, length);
218 tty_flip_buffer_push(linux_tty);
233 static int ipw_write(struct tty_struct *linux_tty,
236 struct ipw_tty *tty = linux_tty->driver_data;
274 static int ipw_write_room(struct tty_struct *linux_tty)
276 struct ipw_tty *tty = linux_tty->driver_data;
317 static int ipw_chars_in_buffer(struct tty_struct *linux_tty)
319 struct ipw_tty *tty = linux_tty->driver_data;
397 static int ipw_tiocmget(struct tty_struct *linux_tty, struct file *file)
399 struct ipw_tty *tty = linux_tty->driver_data;
411 ipw_tiocmset(struct tty_struct *linux_tty, struct file *file,
414 struct ipw_tty *tty = linux_tty->driver_data;
425 static int ipw_ioctl(struct tty_struct *linux_tty, struct file *file,
428 struct ipw_tty *tty = linux_tty->driver_data;
480 return tty_perform_flush(linux_tty, arg);
483 return tty_mode_ioctl(linux_tty, file, cmd , arg);
572 if (ttyj->linux_tty != NULL) {
574 tty_hangup(ttyj->linux_tty);
669 && tty->linux_tty) {
670 tty_hangup(tty->linux_tty);