diff options
Diffstat (limited to 'include/linux/usb.h')
-rw-r--r-- | include/linux/usb.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index 207b1ad9d990..a2d923fd54f9 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
@@ -1135,6 +1135,14 @@ usb_maxpacket(struct usb_device *udev, int pipe, int is_out) | |||
1135 | 1135 | ||
1136 | /* -------------------------------------------------------------------------- */ | 1136 | /* -------------------------------------------------------------------------- */ |
1137 | 1137 | ||
1138 | /* Events from the usb core */ | ||
1139 | #define USB_DEVICE_ADD 0x0001 | ||
1140 | #define USB_DEVICE_REMOVE 0x0002 | ||
1141 | #define USB_BUS_ADD 0x0003 | ||
1142 | #define USB_BUS_REMOVE 0x0004 | ||
1143 | extern void usb_register_notify(struct notifier_block *nb); | ||
1144 | extern void usb_unregister_notify(struct notifier_block *nb); | ||
1145 | |||
1138 | #ifdef DEBUG | 1146 | #ifdef DEBUG |
1139 | #define dbg(format, arg...) printk(KERN_DEBUG "%s: " format "\n" , __FILE__ , ## arg) | 1147 | #define dbg(format, arg...) printk(KERN_DEBUG "%s: " format "\n" , __FILE__ , ## arg) |
1140 | #else | 1148 | #else |