diff options
author | Felipe Balbi <balbi@ti.com> | 2012-06-29 05:48:50 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-07-06 13:58:38 -0400 |
commit | b2006d91d8e389a04ffbf603b3896af93b0af427 (patch) | |
tree | 7dde880c02322eb70eb14bb49fcb3f49f63ec042 /drivers/usb/chipidea/Makefile | |
parent | b7283d5a044c010d5e68afccc0598846f254db7b (diff) |
usb: chipidea: drop useless arch-check
msm glue layer compiles on all arches just
fine. Let's drop the unnecessary ARCH check
so we have easier compile tests.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: Richard Zhao <richard.zhao@freescale.com>
Acked-by: Marek Vasut <marex@denx.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/chipidea/Makefile')
-rw-r--r-- | drivers/usb/chipidea/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/usb/chipidea/Makefile b/drivers/usb/chipidea/Makefile index cc3493769724..b69900a62a4d 100644 --- a/drivers/usb/chipidea/Makefile +++ b/drivers/usb/chipidea/Makefile | |||
@@ -5,10 +5,12 @@ ci_hdrc-$(CONFIG_USB_CHIPIDEA_UDC) += udc.o | |||
5 | ci_hdrc-$(CONFIG_USB_CHIPIDEA_HOST) += host.o | 5 | ci_hdrc-$(CONFIG_USB_CHIPIDEA_HOST) += host.o |
6 | ci_hdrc-$(CONFIG_USB_CHIPIDEA_DEBUG) += debug.o | 6 | ci_hdrc-$(CONFIG_USB_CHIPIDEA_DEBUG) += debug.o |
7 | 7 | ||
8 | # Glue/Bridge layers go here | ||
9 | |||
10 | obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_msm.o | ||
11 | |||
12 | # PCI doesn't provide stubs, need to check | ||
8 | ifneq ($(CONFIG_PCI),) | 13 | ifneq ($(CONFIG_PCI),) |
9 | obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_pci.o | 14 | obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_pci.o |
10 | endif | 15 | endif |
11 | 16 | ||
12 | ifneq ($(CONFIG_ARCH_MSM),) | ||
13 | obj-$(CONFIG_USB_CHIPIDEA) += ci13xxx_msm.o | ||
14 | endif | ||