aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/smc911x.h
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2007-11-21 15:28:06 +0100
committerJeff Garzik <jeff@garzik.org>2007-11-23 22:09:00 -0500
commitd0c4581b68922157da4e8071781b210043839a74 (patch)
tree3a7e8a8c750c7cac3c0838b99d63dca16b3fdfb4 /drivers/net/smc911x.h
parentamd8111e: don't call napi_enable if configured w/o NAPI (diff)
downloadlinux-dev-d0c4581b68922157da4e8071781b210043839a74.tar.xz
linux-dev-d0c4581b68922157da4e8071781b210043839a74.zip
smc911x: Fix undefined CONFIG_ symbol warning
elif defined(CONFIG_*) should be used instead of elif CONFIG_* so GCC doesn't give warnings about undefined symbols when the config option is disabled. Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/smc911x.h')
-rw-r--r--drivers/net/smc911x.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/smc911x.h b/drivers/net/smc911x.h
index 16a0edc078fd..d04e4fa35206 100644
--- a/drivers/net/smc911x.h
+++ b/drivers/net/smc911x.h
@@ -37,7 +37,7 @@
#define SMC_USE_16BIT 0
#define SMC_USE_32BIT 1
#define SMC_IRQ_SENSE IRQF_TRIGGER_FALLING
-#elif CONFIG_SH_MAGIC_PANEL_R2
+#elif defined(CONFIG_SH_MAGIC_PANEL_R2)
#define SMC_USE_SH_DMA 0
#define SMC_USE_16BIT 0
#define SMC_USE_32BIT 1