From: Kumar Gala Date: Thu, 10 May 2007 03:48:53 +0000 (-0500) Subject: [POWERPC] 83xx: Suppress warning when CONFIG_ options aren't defined X-Git-Tag: v2.6.22-rc1~108^2~23 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=c9ec87e5121b1777172fc07a14322ebb32a04ba9;p=~emulex%2Finfiniband.git [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 --- diff --git a/arch/powerpc/platforms/83xx/mpc832x_rdb.c b/arch/powerpc/platforms/83xx/mpc832x_rdb.c index b0b22bb29de..3db68b73fc3 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);