summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/Kconfig
diff options
context:
space:
mode:
authorPranith Kumar2014-08-18 23:13:41 +0200
committerMichael Ellerman2014-09-25 15:14:35 +0200
commit3484a31fce22348b9034024cf9368ab2dbbfd0ab (patch)
treeb0bd35c9c2d9ff2e95bafbddf979734b3bd94f51 /arch/powerpc/Kconfig
parentpowerpc/boot: Don't install zImage.* from make install (diff)
downloadkernel-qcow2-linux-3484a31fce22348b9034024cf9368ab2dbbfd0ab.tar.gz
kernel-qcow2-linux-3484a31fce22348b9034024cf9368ab2dbbfd0ab.tar.xz
kernel-qcow2-linux-3484a31fce22348b9034024cf9368ab2dbbfd0ab.zip
powerpc: Fix build error with CONFIG_PCI=n
Fix ppc 32 build failure as reported here: http://kisskb.ellerman.id.au/kisskb/buildresult/11663513/ The error is as follows: arch/powerpc/include/asm/floppy.h:142:20: error: 'isa_bridge_pcidev' undeclared (first use in this function) This is happening since floppy.o is enabled by BLK_DEV_FD which depends on ARCH_MAY_HAVE_PC_FDC which is in-turn enabled if PPC_PSERIES=n. The following commit changes the dependency so that ARCH_MAY_HAVE_PC_FDC is dependent exclusively on PCI since otherwise it will not compile. Signed-off-by: Pranith Kumar <bobby.prani@gmail.com> Reported-by: Geert Uytterhoeven <geert@linux-m68k.org> CC: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/Kconfig')
-rw-r--r--arch/powerpc/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig
index 4bc7b62fb4b6..ece1c01ddb2f 100644
--- a/arch/powerpc/Kconfig
+++ b/arch/powerpc/Kconfig
@@ -182,7 +182,7 @@ config SCHED_OMIT_FRAME_POINTER
config ARCH_MAY_HAVE_PC_FDC
bool
- default !PPC_PSERIES || PCI
+ default PCI
config PPC_OF
def_bool y