* [patch 2.6.14-rc1] Correct xircom_cb use of CONFIG_NET_POLL_CONTROLLER
@ 2005-09-13 5:05 Keith Owens
0 siblings, 0 replies; only message in thread
From: Keith Owens @ 2005-09-13 5:05 UTC (permalink / raw)
To: linux-kernel
xircom_cb.c does #if CONFIG_NET_POLL_CONTROLLER instead of #ifdef,
resulting in drivers/net/tulip/xircom_cb.c:120:5: warning:
"CONFIG_NET_POLL_CONTROLLER" is not defined.
Signed-off-by: Keith Owens <kaos@sgi.com>
---
xircom_cb.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: linux/drivers/net/tulip/xircom_cb.c
===================================================================
--- linux.orig/drivers/net/tulip/xircom_cb.c 2005-09-13 15:01:30.667784502 +1000
+++ linux/drivers/net/tulip/xircom_cb.c 2005-09-13 15:02:02.246401717 +1000
@@ -117,7 +117,7 @@ static int xircom_open(struct net_device
static int xircom_close(struct net_device *dev);
static void xircom_up(struct xircom_private *card);
static struct net_device_stats *xircom_get_stats(struct net_device *dev);
-#if CONFIG_NET_POLL_CONTROLLER
+#ifdef CONFIG_NET_POLL_CONTROLLER
static void xircom_poll_controller(struct net_device *dev);
#endif
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-09-13 5:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-13 5:05 [patch 2.6.14-rc1] Correct xircom_cb use of CONFIG_NET_POLL_CONTROLLER Keith Owens
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox