From: Peter Chen Date: Tue, 29 Apr 2014 00:35:58 +0000 (+0800) Subject: usb: move usb/usb-common.c to usb/common/usb-common.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=89d97725b21403a343d01d4ad624b18b78226963;p=karo-tx-linux.git usb: move usb/usb-common.c to usb/common/usb-common.c Since we will have more usb-common things, and it will let usb-common.c be larger and larger, we create a folder named usb/common for all usb common things. Cc: Felipe Balbi Signed-off-by: Peter Chen Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile index 1ae2bf39d84b..f0d33321bb84 100644 --- a/drivers/usb/Makefile +++ b/drivers/usb/Makefile @@ -58,4 +58,4 @@ obj-$(CONFIG_USB_CHIPIDEA) += chipidea/ obj-$(CONFIG_USB_RENESAS_USBHS) += renesas_usbhs/ obj-$(CONFIG_USB_GADGET) += gadget/ -obj-$(CONFIG_USB_COMMON) += usb-common.o +obj-$(CONFIG_USB_COMMON) += common/ diff --git a/drivers/usb/common/Makefile b/drivers/usb/common/Makefile new file mode 100644 index 000000000000..9b320d1a11fd --- /dev/null +++ b/drivers/usb/common/Makefile @@ -0,0 +1,5 @@ +# +# Makefile for the usb common parts. +# + +obj-$(CONFIG_USB_COMMON) += usb-common.o diff --git a/drivers/usb/usb-common.c b/drivers/usb/common/usb-common.c similarity index 100% rename from drivers/usb/usb-common.c rename to drivers/usb/common/usb-common.c