aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/tulip/de4x5.c2
-rw-r--r--drivers/net/tulip/dmfe.c2
-rw-r--r--drivers/net/tulip/uli526x.c2
-rw-r--r--drivers/net/tulip/winbond-840.c7
4 files changed, 7 insertions, 6 deletions
diff --git a/drivers/net/tulip/de4x5.c b/drivers/net/tulip/de4x5.c
index 6430a2ec6db1..f9491bd787d1 100644
--- a/drivers/net/tulip/de4x5.c
+++ b/drivers/net/tulip/de4x5.c
@@ -479,7 +479,7 @@
479 479
480#include "de4x5.h" 480#include "de4x5.h"
481 481
482static const char version[] __devinitdata = 482static const char version[] __devinitconst =
483 KERN_INFO "de4x5.c:V0.546 2001/02/22 davies@maniac.ultranet.com\n"; 483 KERN_INFO "de4x5.c:V0.546 2001/02/22 davies@maniac.ultranet.com\n";
484 484
485#define c_char const char 485#define c_char const char
diff --git a/drivers/net/tulip/dmfe.c b/drivers/net/tulip/dmfe.c
index 2e5c99941f35..e2c9d0f5a755 100644
--- a/drivers/net/tulip/dmfe.c
+++ b/drivers/net/tulip/dmfe.c
@@ -288,7 +288,7 @@ enum dmfe_CR6_bits {
288 288
289/* Global variable declaration ----------------------------- */ 289/* Global variable declaration ----------------------------- */
290static int __devinitdata printed_version; 290static int __devinitdata printed_version;
291static char version[] __devinitdata = 291static const char version[] __devinitconst =
292 KERN_INFO DRV_NAME ": Davicom DM9xxx net driver, version " 292 KERN_INFO DRV_NAME ": Davicom DM9xxx net driver, version "
293 DRV_VERSION " (" DRV_RELDATE ")\n"; 293 DRV_VERSION " (" DRV_RELDATE ")\n";
294 294
diff --git a/drivers/net/tulip/uli526x.c b/drivers/net/tulip/uli526x.c
index 030e02e63023..c227db079621 100644
--- a/drivers/net/tulip/uli526x.c
+++ b/drivers/net/tulip/uli526x.c
@@ -200,7 +200,7 @@ enum uli526x_CR6_bits {
200 200
201/* Global variable declaration ----------------------------- */ 201/* Global variable declaration ----------------------------- */
202static int __devinitdata printed_version; 202static int __devinitdata printed_version;
203static char version[] __devinitdata = 203static const char version[] __devinitconst =
204 KERN_INFO DRV_NAME ": ULi M5261/M5263 net driver, version " 204 KERN_INFO DRV_NAME ": ULi M5261/M5263 net driver, version "
205 DRV_VERSION " (" DRV_RELDATE ")\n"; 205 DRV_VERSION " (" DRV_RELDATE ")\n";
206 206
diff --git a/drivers/net/tulip/winbond-840.c b/drivers/net/tulip/winbond-840.c
index 426b7c73e36a..c61a01b029af 100644
--- a/drivers/net/tulip/winbond-840.c
+++ b/drivers/net/tulip/winbond-840.c
@@ -139,9 +139,10 @@ static int full_duplex[MAX_UNITS] = {-1, -1, -1, -1, -1, -1, -1, -1};
139#define PKT_BUF_SZ 1536 /* Size of each temporary Rx buffer.*/ 139#define PKT_BUF_SZ 1536 /* Size of each temporary Rx buffer.*/
140 140
141/* These identify the driver base version and may not be removed. */ 141/* These identify the driver base version and may not be removed. */
142static const char version[] __initdata = 142static const char version[] __initconst =
143KERN_INFO DRV_NAME ".c:v" DRV_VERSION " (2.4 port) " DRV_RELDATE " Donald Becker <becker@scyld.com>\n" 143 KERN_INFO DRV_NAME ".c:v" DRV_VERSION " (2.4 port) "
144KERN_INFO " http://www.scyld.com/network/drivers.html\n"; 144 DRV_RELDATE " Donald Becker <becker@scyld.com>\n"
145 KERN_INFO " http://www.scyld.com/network/drivers.html\n";
145 146
146MODULE_AUTHOR("Donald Becker <becker@scyld.com>"); 147MODULE_AUTHOR("Donald Becker <becker@scyld.com>");
147MODULE_DESCRIPTION("Winbond W89c840 Ethernet driver"); 148MODULE_DESCRIPTION("Winbond W89c840 Ethernet driver");