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/dmfe.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/dmfe.c')
-rw-r--r-- | drivers/net/tulip/dmfe.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ----------------------------- */ |
290 | static int __devinitdata printed_version; | 290 | static int __devinitdata printed_version; |
291 | static char version[] __devinitdata = | 291 | static 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 | ||