aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Youn <John.Youn@synopsys.com>2015-03-16 21:10:02 -0400
committerFelipe Balbi <balbi@ti.com>2015-03-19 12:28:16 -0400
commitb48cb02de37976ad2ebef201ad40aa40156f6daa (patch)
tree6c5fdbf2ddd7a4dcbb885ac5c12e19711ac23f5a
parent3463d795bf0f8d9b32d4deabaaffcb81a1abb92b (diff)
usb: dwc2: pci: Correctly compile dwc2-pci as a module or built-in
The dwc2-pci driver should be compiled as a module when configured to do so. If the dwc2-pci is configured as a module but actually built-in, it can cause build errors due to the fact that the generic-phy will be allowed to compile as a module causing undefined references. Reported-by: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: John Youn <johnyoun@synopsys.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r--drivers/usb/dwc2/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/usb/dwc2/Makefile b/drivers/usb/dwc2/Makefile
index 8f752679752a..f07b425eaff3 100644
--- a/drivers/usb/dwc2/Makefile
+++ b/drivers/usb/dwc2/Makefile
@@ -19,10 +19,8 @@ endif
19# mode. The PCI bus interface module will called dwc2_pci.ko and the platform 19# mode. The PCI bus interface module will called dwc2_pci.ko and the platform
20# interface module will be called dwc2_platform.ko. 20# interface module will be called dwc2_platform.ko.
21 21
22ifneq ($(CONFIG_USB_DWC2_PCI),) 22obj-$(CONFIG_USB_DWC2_PCI) += dwc2_pci.o
23 obj-$(CONFIG_USB_DWC2) += dwc2_pci.o 23dwc2_pci-y := pci.o
24 dwc2_pci-y := pci.o
25endif
26 24
27obj-$(CONFIG_USB_DWC2_PLATFORM) += dwc2_platform.o 25obj-$(CONFIG_USB_DWC2_PLATFORM) += dwc2_platform.o
28dwc2_platform-y := platform.o 26dwc2_platform-y := platform.o