2 * driver/usb/usb-core.c
4 * (C) Copyright David Waite 1999
5 * based on code from usb.c, by Linus Torvalds
7 * The purpose of this file is to pull any and all generic modular code from
8 * usb.c and put it in a separate file. This way usb.c is kept as a generic
9 * library, while this file handles starting drivers, etc.
13 #include <linux/version.h>
14 #include <linux/kernel.h>
15 #include <linux/config.h>
16 #include <linux/usb.h>
22 int usb_hub_init(void);
23 void usb_hub_cleanup(void);
24 int usb_major_init(void);
25 void usb_major_cleanup(void);
31 int usb_cpia_init(void);
32 int usb_audio_init(void);
33 int usb_ibmcam_init(void);
34 int dabusb_init(void);
36 int dsbr100_init(void);
43 int ohci_hcd_init(void);
51 void cleanup_module(void)
71 #ifndef CONFIG_USB_MODULE
72 #ifdef CONFIG_VIDEO_CPIA_USB
75 #ifdef CONFIG_USB_AUDIO
78 #ifdef CONFIG_USB_IBMCAM
81 #ifdef CONFIG_USB_DABUSB
84 #ifdef CONFIG_USB_DSBR
87 #ifdef CONFIG_USB_PLUSB
90 #ifdef CONFIG_USB_UHCI
93 #ifdef CONFIG_USB_UHCI_ALT
96 #ifdef CONFIG_USB_OHCI