public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH]dgrs - Fixes Warnings when CONFIG_ISA and CONFIG_PCI are not enabled
@ 2005-11-02  7:14 Ashutosh Naik
  2005-11-02  9:31 ` Richard Knutsson
  0 siblings, 1 reply; 15+ messages in thread
From: Ashutosh Naik @ 2005-11-02  7:14 UTC (permalink / raw)
  To: rick, davej, acme, linux-net, akpm, linux-kernel, stable

This patch fixes compiler warnings when CONFIG_ISA and CONFIG_PCI are
not enabled in the dgrc network driver.

Signed-off-by: Ashutosh Naik <ashutosh.naik@gmail.com>

--
diff -Naurp linux-2.6.14/drivers/net/dgrs.c
linux-2.6.14-git1/drivers/net/dgrs.c---
linux-2.6.14/drivers/net/dgrs.c     2005-10-28 05:32:08.000000000
+0530
+++ linux-2.6.14-git1/drivers/net/dgrs.c        2005-11-01
10:30:03.000000000 +0530
@@ -1549,8 +1549,12 @@ MODULE_PARM_DESC(nicmode, "Digi RightSwi
 static int __init dgrs_init_module (void)  {
        int     i;
-       int eisacount = 0, pcicount = 0;
-
+#ifdef CONFIG_EISA
+       int eisacount = 0;
+#endif
+#ifdef CONFIG_PCI
+       int pcicount = 0;
+#endif
        /*
         *      Command line variable overrides
         *              debug=NNN

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2005-11-05 17:46 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-02  7:14 [PATCH]dgrs - Fixes Warnings when CONFIG_ISA and CONFIG_PCI are not enabled Ashutosh Naik
2005-11-02  9:31 ` Richard Knutsson
2005-11-02 13:16   ` Ashutosh Naik
2005-11-02 20:55     ` Richard Knutsson
2005-11-03  5:39       ` Ashutosh Naik
2005-11-03 23:13         ` [PATCH] /drivers/net/dgrs.c - Fixes Warnings when CONFIG_EISA or " Richard Knutsson
2005-11-05  2:25       ` [PATCH]dgrs - Fixes Warnings when CONFIG_ISA and " Andrew Morton
2005-11-05  2:30         ` Andrew Morton
2005-11-05  4:51           ` Ashutosh Naik
2005-11-05  8:36           ` Richard Knutsson
2005-11-05  8:46             ` Andrew Morton
2005-11-05 11:54               ` Richard Knutsson
2005-11-05 15:29                 ` Richard Knutsson
2005-11-05 17:45                   ` Andrew Morton
2005-11-05 17:46                 ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox