diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2017-02-15 18:48:19 +0530 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2017-02-21 15:00:26 -0600 |
commit | 7a2b3f024b8b724257d82f76690e68c69d797efd (patch) | |
tree | a3e2d90c5e7dd294aa1ecacfa4c3ba1da4ba887e /drivers/Makefile | |
parent | a0560209f10cb55fbfcdd11ef85cfb444f8bea89 (diff) | |
download | linux-7a2b3f024b8b724257d82f76690e68c69d797efd.tar.gz linux-7a2b3f024b8b724257d82f76690e68c69d797efd.tar.bz2 linux-7a2b3f024b8b724257d82f76690e68c69d797efd.zip |
PCI: dwc: Remove dependency of designware on CONFIG_PCI
CONFIG_PCI is used to enable host mode PCI. In preparation for adding
endpoint mode support to designware driver, remove the dependency of
designware on CONFIG_PCI and make only the host-specific part depend on
CONFIG_PCI.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index 060026a02f59..f521cb0e58d6 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -15,6 +15,9 @@ obj-$(CONFIG_PINCTRL) += pinctrl/ obj-$(CONFIG_GPIOLIB) += gpio/ obj-y += pwm/ obj-$(CONFIG_PCI) += pci/ +# PCI dwc controller drivers +obj-y += pci/dwc/ + obj-$(CONFIG_PARISC) += parisc/ obj-$(CONFIG_RAPIDIO) += rapidio/ obj-y += video/ |