Commit fa665ccf01440644a3956ed039e51e1088cd0f15
Committed by
David S. Miller
1 parent
7ca98fa234
Exists in
master
and in
39 other branches
ipx: use constant for strings and desciptor
Fix compiler warning about non-const format string. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Acked-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Showing 1 changed file with 6 additions and 6 deletions Side-by-side Diff
net/ipx/af_ipx.c
... | ... | @@ -1975,15 +1975,15 @@ |
1975 | 1975 | extern struct datalink_proto *make_EII_client(void); |
1976 | 1976 | extern void destroy_EII_client(struct datalink_proto *); |
1977 | 1977 | |
1978 | -static unsigned char ipx_8022_type = 0xE0; | |
1979 | -static unsigned char ipx_snap_id[5] = { 0x0, 0x0, 0x0, 0x81, 0x37 }; | |
1980 | -static char ipx_EII_err_msg[] __initdata = | |
1978 | +static const unsigned char ipx_8022_type = 0xE0; | |
1979 | +static const unsigned char ipx_snap_id[5] = { 0x0, 0x0, 0x0, 0x81, 0x37 }; | |
1980 | +static const char ipx_EII_err_msg[] __initconst = | |
1981 | 1981 | KERN_CRIT "IPX: Unable to register with Ethernet II\n"; |
1982 | -static char ipx_8023_err_msg[] __initdata = | |
1982 | +static const char ipx_8023_err_msg[] __initconst = | |
1983 | 1983 | KERN_CRIT "IPX: Unable to register with 802.3\n"; |
1984 | -static char ipx_llc_err_msg[] __initdata = | |
1984 | +static const char ipx_llc_err_msg[] __initconst = | |
1985 | 1985 | KERN_CRIT "IPX: Unable to register with 802.2\n"; |
1986 | -static char ipx_snap_err_msg[] __initdata = | |
1986 | +static const char ipx_snap_err_msg[] __initconst = | |
1987 | 1987 | KERN_CRIT "IPX: Unable to register with SNAP\n"; |
1988 | 1988 | |
1989 | 1989 | static int __init ipx_init(void) |