diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2006-07-01 22:08:06 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-09-27 11:58:50 -0700 |
commit | 36e56a34586783c7986ce09d39db80b27c95ce24 (patch) | |
tree | 08637f4fbdd1fd46baba8a48645fcbe37b94cdf5 /drivers/usb/core/Makefile | |
parent | 140d8f687457c40a66af362838fac0d7893e7df5 (diff) | |
download | talos-obmc-linux-36e56a34586783c7986ce09d39db80b27c95ce24.tar.gz talos-obmc-linux-36e56a34586783c7986ce09d39db80b27c95ce24.zip |
usbcore: move code among source files
This revised patch (as713b) moves a few routines among source files in
usbcore. Some driver-related code in usb.c (claiming interfaces and
matching IDs) is moved to driver.c, where it belongs. Also the
usb_generic stuff in driver.c is moved to a new source file: generic.c.
(That's the reason for revising the patch.) Although not very big now,
it will get bigger in a later patch.
None of the code has been changed; it has only been re-arranged.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/core/Makefile')
-rw-r--r-- | drivers/usb/core/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/Makefile b/drivers/usb/core/Makefile index ec510922af63..34e9bac319b4 100644 --- a/drivers/usb/core/Makefile +++ b/drivers/usb/core/Makefile @@ -4,7 +4,7 @@ usbcore-objs := usb.o hub.o hcd.o urb.o message.o driver.o \ config.o file.o buffer.o sysfs.o endpoint.o \ - devio.o notify.o + devio.o notify.o generic.o ifeq ($(CONFIG_PCI),y) usbcore-objs += hcd-pci.o |