aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/tulip/de4x5.c3
-rw-r--r--drivers/net/tulip/winbond-840.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/tulip/de4x5.c b/drivers/net/tulip/de4x5.c
index 6418f74415d7..98e86826b2c7 100644
--- a/drivers/net/tulip/de4x5.c
+++ b/drivers/net/tulip/de4x5.c
@@ -479,7 +479,8 @@
479 479
480#include "de4x5.h" 480#include "de4x5.h"
481 481
482static char version[] __devinitdata = "de4x5.c:V0.546 2001/02/22 davies@maniac.ultranet.com\n"; 482static const char version[] __devinitdata =
483 KERN_INFO "de4x5.c:V0.546 2001/02/22 davies@maniac.ultranet.com\n";
483 484
484#define c_char const char 485#define c_char const char
485 486
diff --git a/drivers/net/tulip/winbond-840.c b/drivers/net/tulip/winbond-840.c
index f467bf87817d..426b7c73e36a 100644
--- a/drivers/net/tulip/winbond-840.c
+++ b/drivers/net/tulip/winbond-840.c
@@ -139,7 +139,7 @@ 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 char version[] = 142static const char version[] __initdata =
143KERN_INFO DRV_NAME ".c:v" DRV_VERSION " (2.4 port) " DRV_RELDATE " Donald Becker <becker@scyld.com>\n" 143KERN_INFO DRV_NAME ".c:v" DRV_VERSION " (2.4 port) " DRV_RELDATE " Donald Becker <becker@scyld.com>\n"
144KERN_INFO " http://www.scyld.com/network/drivers.html\n"; 144KERN_INFO " http://www.scyld.com/network/drivers.html\n";
145 145