usb-wwan.h (b74b953b998bcc2db91b694446f3a2619ec32de6) | usb-wwan.h (02303f73373aa1da19dbec510ec5a4e2576f9610) |
---|---|
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); --- 4 unchanged lines hidden (view full) --- 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); 19extern int usb_wwan_tiocmset(struct tty_struct *tty, struct file *file, 20 unsigned int set, unsigned int clear); | 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); --- 4 unchanged lines hidden (view full) --- 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); 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); |
|
21extern int usb_wwan_send_setup(struct usb_serial_port *port); 22extern int usb_wwan_write(struct tty_struct *tty, struct usb_serial_port *port, 23 const unsigned char *buf, int count); 24extern int usb_wwan_chars_in_buffer(struct tty_struct *tty); 25#ifdef CONFIG_PM 26extern int usb_wwan_suspend(struct usb_serial *serial, pm_message_t message); 27extern int usb_wwan_resume(struct usb_serial *serial); 28#endif --- 39 unchanged lines hidden --- | 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); 27#ifdef CONFIG_PM 28extern int usb_wwan_suspend(struct usb_serial *serial, pm_message_t message); 29extern int usb_wwan_resume(struct usb_serial *serial); 30#endif --- 39 unchanged lines hidden --- |