mxs: delete old kernel versions
[openwrt/openwrt.git] / target / linux / bcm53xx / patches-4.1 / 034-PCI-iproc-Fix-BCMA-dependency-in-Kconfig.patch
1 From 70d334ca71b0e35ef21493d86799cec83f452d94 Mon Sep 17 00:00:00 2001
2 From: Ray Jui <rjui@broadcom.com>
3 Date: Wed, 29 Jul 2015 10:12:53 -0700
4 Subject: [PATCH] PCI: iproc: Fix BCMA dependency in Kconfig
5
6 The current iProc BCMA front-end driver can only work on ARM32 based
7 platforms; therefore its config option in Kconfig should be changed to
8 reflect that. This fixes arm64 allmodconfig build failure when compiling
9 the the iProc BCMA driver that contains struct pci_sys_data that is
10 arm32 specific
11
12 Signed-off-by: Ray Jui <rjui@broadcom.com>
13 Signed-off-by: Olof Johansson <olof@lixom.net>
14 ---
15 drivers/pci/host/Kconfig | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 --- a/drivers/pci/host/Kconfig
19 +++ b/drivers/pci/host/Kconfig
20 @@ -127,7 +127,7 @@ config PCIE_IPROC_PLATFORM
21
22 config PCIE_IPROC_BCMA
23 bool "Broadcom iProc PCIe BCMA bus driver"
24 - depends on ARCH_BCM_IPROC || (ARM && COMPILE_TEST)
25 + depends on ARM && (ARCH_BCM_IPROC || COMPILE_TEST)
26 select PCIE_IPROC
27 select BCMA
28 select PCI_DOMAINS