All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.6.10-rc1-mm4 xircom_tulip_cb.c doesn't compile
@ 2004-11-10  4:48 Bernhard Rosenkraenzer
  0 siblings, 0 replies; only message in thread
From: Bernhard Rosenkraenzer @ 2004-11-10  4:48 UTC (permalink / raw)
  To: linux-kernel, akpm

[-- Attachment #1: Type: text/plain, Size: 31 bytes --]

SSIA, fix attached.

LLaP
bero

[-- Attachment #2: 2.6.10-rc1-mm4-compile.patch --]
[-- Type: text/x-diff, Size: 977 bytes --]

--- linux-2.6.9/drivers/net/tulip/xircom_tulip_cb.c.ark	2004-11-10 05:06:58.000000000 +0100
+++ linux-2.6.9/drivers/net/tulip/xircom_tulip_cb.c	2004-11-10 05:17:48.000000000 +0100
@@ -33,6 +33,13 @@
 
 /* A few user-configurable values. */
 
+#define xircom_debug debug
+#ifdef XIRCOM_DEBUG
+static int xircom_debug = XIRCOM_DEBUG;
+#else
+static int xircom_debug = 1;
+#endif
+
 /* Maximum events (Rx packets, etc.) to handle at each interrupt. */
 static int max_interrupt_work = 25;
 
@@ -125,18 +132,11 @@
 module_param(csr0, int, 0);
 
 static int num_units;
-module_param_array(options, num_units, int, 0);
-module_param_array(full_duplex, num_units, int, 0);
+module_param_array(options, int, &num_units, 0);
+module_param_array(full_duplex, int, &num_units, 0);
 
 #define RUN_AT(x) (jiffies + (x))
 
-#define xircom_debug debug
-#ifdef XIRCOM_DEBUG
-static int xircom_debug = XIRCOM_DEBUG;
-#else
-static int xircom_debug = 1;
-#endif
-
 /*
 				Theory of Operation
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-11-10  4:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-10  4:48 [PATCH] 2.6.10-rc1-mm4 xircom_tulip_cb.c doesn't compile Bernhard Rosenkraenzer

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.