usb-wwan.h (df9b42963f2d010ae3163a894ce22cf6b27cd344) | usb-wwan.h (b8f0e82044c9ba40e92340c8a6d47d6bd6d819bc) |
---|---|
1/* 2 * Definitions for USB serial mobile broadband cards 3 */ 4 5#ifndef __LINUX_USB_USB_WWAN 6#define __LINUX_USB_USB_WWAN 7 8extern void usb_wwan_dtr_rts(struct usb_serial_port *port, int on); 9extern int usb_wwan_open(struct tty_struct *tty, struct usb_serial_port *port); 10extern void usb_wwan_close(struct usb_serial_port *port); | 1/* 2 * Definitions for USB serial mobile broadband cards 3 */ 4 5#ifndef __LINUX_USB_USB_WWAN 6#define __LINUX_USB_USB_WWAN 7 8extern void usb_wwan_dtr_rts(struct usb_serial_port *port, int on); 9extern int usb_wwan_open(struct tty_struct *tty, struct usb_serial_port *port); 10extern void usb_wwan_close(struct usb_serial_port *port); |
11extern int usb_wwan_startup(struct usb_serial *serial); | 11extern int usb_wwan_port_probe(struct usb_serial_port *port); |
12extern int usb_wwan_port_remove(struct usb_serial_port *port); 13extern int usb_wwan_write_room(struct tty_struct *tty); 14extern void usb_wwan_set_termios(struct tty_struct *tty, 15 struct usb_serial_port *port, 16 struct ktermios *old); 17extern int usb_wwan_tiocmget(struct tty_struct *tty); 18extern int usb_wwan_tiocmset(struct tty_struct *tty, 19 unsigned int set, unsigned int clear); --- 49 unchanged lines hidden --- | 12extern int usb_wwan_port_remove(struct usb_serial_port *port); 13extern int usb_wwan_write_room(struct tty_struct *tty); 14extern void usb_wwan_set_termios(struct tty_struct *tty, 15 struct usb_serial_port *port, 16 struct ktermios *old); 17extern int usb_wwan_tiocmget(struct tty_struct *tty); 18extern int usb_wwan_tiocmset(struct tty_struct *tty, 19 unsigned int set, unsigned int clear); --- 49 unchanged lines hidden --- |