diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-05-09 22:48:53 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-05-09 22:48:53 -0500 |
commit | c9ec87e5121b1777172fc07a14322ebb32a04ba9 (patch) | |
tree | 0f4c49d7bf09253a0429fa373621d8e87116efbc | |
parent | b38d06d8c48e8a866bf8f0ae5dabd9eea9c63f7c (diff) | |
download | op-kernel-dev-c9ec87e5121b1777172fc07a14322ebb32a04ba9.zip op-kernel-dev-c9ec87e5121b1777172fc07a14322ebb32a04ba9.tar.gz |
[POWERPC] 83xx: Suppress warning when CONFIG_ options aren't defined
Suppress warning when CONFIG_PCI & CONFIG_QUICC_ENGINE is not defined
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
-rw-r--r-- | arch/powerpc/platforms/83xx/mpc832x_rdb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/83xx/mpc832x_rdb.c b/arch/powerpc/platforms/83xx/mpc832x_rdb.c index b0b22bb..3db68b7 100644 --- a/arch/powerpc/platforms/83xx/mpc832x_rdb.c +++ b/arch/powerpc/platforms/83xx/mpc832x_rdb.c @@ -44,7 +44,9 @@ unsigned long isa_mem_base = 0; */ static void __init mpc832x_rdb_setup_arch(void) { +#if defined(CONFIG_PCI) || defined(CONFIG_QUICC_ENGINE) struct device_node *np; +#endif if (ppc_md.progress) ppc_md.progress("mpc832x_rdb_setup_arch()", 0); |