diff options
author | Chen Gang <xili_gchen_5257@hotmail.com> | 2015-03-03 16:16:18 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-03-05 06:56:59 -0500 |
commit | b09f5ec18b16b82f4db8a735e453332db7514275 (patch) | |
tree | 5ee1ae0eb9b051edb67cd872217f29d349dec3d0 | |
parent | e3e72f38a5bd7b17aca04f1bfe6d0ef2371cf05a (diff) |
bcma: Kconfig: Let it depend on PCI
bcma also needs PCI, just like IOMEM and DMA, so let it depend on PCI,
or will cause building break for allmodconfig under c6x:
CC [M] drivers/bcma/driver_pcie2.o
drivers/bcma/driver_pcie2.c: In function 'bcma_core_pcie2_up':
drivers/bcma/driver_pcie2.c:196:8: error: implicit declaration of function 'pcie_set_readrq' [-Werror=implicit-function-declaration]
err = pcie_set_readrq(dev, pcie2->reqsize);
^
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
-rw-r--r-- | drivers/bcma/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bcma/Kconfig b/drivers/bcma/Kconfig index 0ee48be23837..8be284edc73c 100644 --- a/drivers/bcma/Kconfig +++ b/drivers/bcma/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config BCMA_POSSIBLE | 1 | config BCMA_POSSIBLE |
2 | bool | 2 | bool |
3 | depends on HAS_IOMEM && HAS_DMA | 3 | depends on HAS_IOMEM && HAS_DMA && PCI |
4 | default y | 4 | default y |
5 | 5 | ||
6 | menu "Broadcom specific AMBA" | 6 | menu "Broadcom specific AMBA" |