usb-wwan.h (d2137d5af4259f50c19addb8246a186c9ffac325) | usb-wwan.h (60b33c133ca0b7c0b6072c87234b63fee6e80558) |
---|---|
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); 12extern void usb_wwan_disconnect(struct usb_serial *serial); 13extern void usb_wwan_release(struct usb_serial *serial); 14extern int usb_wwan_write_room(struct tty_struct *tty); 15extern void usb_wwan_set_termios(struct tty_struct *tty, 16 struct usb_serial_port *port, 17 struct ktermios *old); | 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); 12extern void usb_wwan_disconnect(struct usb_serial *serial); 13extern void usb_wwan_release(struct usb_serial *serial); 14extern int usb_wwan_write_room(struct tty_struct *tty); 15extern void usb_wwan_set_termios(struct tty_struct *tty, 16 struct usb_serial_port *port, 17 struct ktermios *old); |
18extern int usb_wwan_tiocmget(struct tty_struct *tty, struct file *file); | 18extern int usb_wwan_tiocmget(struct tty_struct *tty); |
19extern int usb_wwan_tiocmset(struct tty_struct *tty, struct file *file, 20 unsigned int set, unsigned int clear); 21extern int usb_wwan_ioctl(struct tty_struct *tty, struct file *file, 22 unsigned int cmd, unsigned long arg); 23extern int usb_wwan_send_setup(struct usb_serial_port *port); 24extern int usb_wwan_write(struct tty_struct *tty, struct usb_serial_port *port, 25 const unsigned char *buf, int count); 26extern int usb_wwan_chars_in_buffer(struct tty_struct *tty); --- 43 unchanged lines hidden --- | 19extern int usb_wwan_tiocmset(struct tty_struct *tty, struct file *file, 20 unsigned int set, unsigned int clear); 21extern int usb_wwan_ioctl(struct tty_struct *tty, struct file *file, 22 unsigned int cmd, unsigned long arg); 23extern int usb_wwan_send_setup(struct usb_serial_port *port); 24extern int usb_wwan_write(struct tty_struct *tty, struct usb_serial_port *port, 25 const unsigned char *buf, int count); 26extern int usb_wwan_chars_in_buffer(struct tty_struct *tty); --- 43 unchanged lines hidden --- |