Commit 8adf609d authored by Rusty Russell's avatar Rusty Russell Committed by Linus Torvalds

[PATCH] Fix use of const with __initdata in znet.c

From:  Pablo Menichini <pablo@menichini.com.ar>

initdata can't be const
parent a981b2b9
...@@ -107,7 +107,7 @@ ...@@ -107,7 +107,7 @@
/* This include could be elsewhere, since it is not wireless specific */ /* This include could be elsewhere, since it is not wireless specific */
#include "wireless/i82593.h" #include "wireless/i82593.h"
static const char version[] __initdata = "znet.c:v1.02 9/23/94 becker@scyld.com\n"; static char version[] __initdata = "znet.c:v1.02 9/23/94 becker@scyld.com\n";
#ifndef ZNET_DEBUG #ifndef ZNET_DEBUG
#define ZNET_DEBUG 1 #define ZNET_DEBUG 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment