diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-02-26 05:19:22 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-27 01:21:53 -0500 |
commit | 03f54b3dec072d92393c1fb7eaab62e615161833 (patch) | |
tree | 16590917847f66eb6edd14ba1a42c3aa9e73f328 /drivers/net/tulip/uli526x.c | |
parent | f11c179eea77b8afc2fb7cb4b9a8815b85e3c16f (diff) |
tulip: get rid of warning for non-const string literal
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tulip/uli526x.c')
-rw-r--r-- | drivers/net/tulip/uli526x.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ----------------------------- */ |
202 | static int __devinitdata printed_version; | 202 | static int __devinitdata printed_version; |
203 | static char version[] __devinitdata = | 203 | static 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 | ||