diff options
author | John W. Linville <linville@tuxdriver.com> | 2011-07-22 16:22:14 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-07-22 16:24:01 -0400 |
commit | 6e6e8c510a84fe3237ef02b954e58cca6a3f4b1a (patch) | |
tree | 04a458be8e800b31b41250b5e4204ef3a3d0b525 /drivers/bcma | |
parent | 8c95b74d8d8acd8b0741b942a46fdb6f81d974ed (diff) | |
download | op-kernel-dev-6e6e8c510a84fe3237ef02b954e58cca6a3f4b1a.zip op-kernel-dev-6e6e8c510a84fe3237ef02b954e58cca6a3f4b1a.tar.gz |
bcma: fix 'SSB_PCICORE_BFL_NOPCI' undeclared build breakage
linux-next-20110722/drivers/bcma/driver_pci.c:175: error: 'SSB_PCICORE_BFL_NOPCI' undeclared (first use in this function)
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma')
-rw-r--r-- | drivers/bcma/driver_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bcma/driver_pci.c b/drivers/bcma/driver_pci.c index dc6f34a..745d264 100644 --- a/drivers/bcma/driver_pci.c +++ b/drivers/bcma/driver_pci.c @@ -172,8 +172,10 @@ static bool bcma_core_pci_is_in_hostmode(struct bcma_drv_pci *pc) chipid_top != 0x5300) return false; +#ifdef CONFIG_SSB_DRIVER_PCICORE if (bus->sprom.boardflags_lo & SSB_PCICORE_BFL_NOPCI) return false; +#endif /* CONFIG_SSB_DRIVER_PCICORE */ #if 0 /* TODO: on BCMA we use address from EROM instead of magic formula */ |