diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2015-03-04 23:07:05 +0100 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-03-05 14:11:45 +0200 |
commit | 1ca2760fb2c13959fcba794695cd5b306cbfa6a4 (patch) | |
tree | dc7876d7a46f61fc2e970f63770e7d3fd6b3f94c /drivers/bcma/Makefile | |
parent | 0a4e699a41f767dff76ca7dc1019b9ca6de3eb42 (diff) | |
download | linux-1ca2760fb2c13959fcba794695cd5b306cbfa6a4.tar.gz linux-1ca2760fb2c13959fcba794695cd5b306cbfa6a4.tar.bz2 linux-1ca2760fb2c13959fcba794695cd5b306cbfa6a4.zip |
bcma: prepare Kconfig symbol for PCI driver
Driver for PCIe core requires PCI to be enabled, however we shouldn't
require it for the whole bus. Someone may be not interested in extra
PCI devices and what's more there are SoCs without any PCI at all (like
BCM5356C0, BCM5357*, BCM47186B0). For more details see Kconfig "help".
Please note this patch doesn't allow disabling PCI drivers yet, as it
requires more work on calls to bcma_core_pci_* functions.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/bcma/Makefile')
-rw-r--r-- | drivers/bcma/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bcma/Makefile b/drivers/bcma/Makefile index 838b4b9d352f..f32af9b76bcd 100644 --- a/drivers/bcma/Makefile +++ b/drivers/bcma/Makefile @@ -3,8 +3,8 @@ bcma-y += driver_chipcommon.o driver_chipcommon_pmu.o bcma-y += driver_chipcommon_b.o bcma-$(CONFIG_BCMA_SFLASH) += driver_chipcommon_sflash.o bcma-$(CONFIG_BCMA_NFLASH) += driver_chipcommon_nflash.o -bcma-y += driver_pci.o -bcma-y += driver_pcie2.o +bcma-$(CONFIG_BCMA_DRIVER_PCI) += driver_pci.o +bcma-$(CONFIG_BCMA_DRIVER_PCI) += driver_pcie2.o bcma-$(CONFIG_BCMA_DRIVER_PCI_HOSTMODE) += driver_pci_host.o bcma-$(CONFIG_BCMA_DRIVER_MIPS) += driver_mips.o bcma-$(CONFIG_BCMA_DRIVER_GMAC_CMN) += driver_gmac_cmn.o |