usb.h (11e4afb49b7fa1fc8e1ffd850c1806dd86a08204) | usb.h (c532b29a6f6d31e84a7c88f995eebdc75ebd4248) |
---|---|
1#ifndef __LINUX_USB_H 2#define __LINUX_USB_H 3 4#include <linux/mod_devicetable.h> 5#include <linux/usb/ch9.h> 6 7#define USB_MAJOR 180 8#define USB_DEVICE_MAJOR 189 --- 829 unchanged lines hidden (view full) --- 838struct usb_driver { 839 const char *name; 840 841 int (*probe) (struct usb_interface *intf, 842 const struct usb_device_id *id); 843 844 void (*disconnect) (struct usb_interface *intf); 845 | 1#ifndef __LINUX_USB_H 2#define __LINUX_USB_H 3 4#include <linux/mod_devicetable.h> 5#include <linux/usb/ch9.h> 6 7#define USB_MAJOR 180 8#define USB_DEVICE_MAJOR 189 --- 829 unchanged lines hidden (view full) --- 838struct usb_driver { 839 const char *name; 840 841 int (*probe) (struct usb_interface *intf, 842 const struct usb_device_id *id); 843 844 void (*disconnect) (struct usb_interface *intf); 845 |
846 int (*ioctl) (struct usb_interface *intf, unsigned int code, | 846 int (*unlocked_ioctl) (struct usb_interface *intf, unsigned int code, |
847 void *buf); 848 849 int (*suspend) (struct usb_interface *intf, pm_message_t message); 850 int (*resume) (struct usb_interface *intf); 851 int (*reset_resume)(struct usb_interface *intf); 852 853 int (*pre_reset)(struct usb_interface *intf); 854 int (*post_reset)(struct usb_interface *intf); --- 748 unchanged lines hidden --- | 847 void *buf); 848 849 int (*suspend) (struct usb_interface *intf, pm_message_t message); 850 int (*resume) (struct usb_interface *intf); 851 int (*reset_resume)(struct usb_interface *intf); 852 853 int (*pre_reset)(struct usb_interface *intf); 854 int (*post_reset)(struct usb_interface *intf); --- 748 unchanged lines hidden --- |