aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipx/af_ipx.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipx/af_ipx.c')
-rw-r--r--net/ipx/af_ipx.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/net/ipx/af_ipx.c b/net/ipx/af_ipx.c
index b6e70f92e7fb..1627050e29fd 100644
--- a/net/ipx/af_ipx.c
+++ b/net/ipx/af_ipx.c
@@ -1958,13 +1958,13 @@ static const struct proto_ops SOCKOPS_WRAPPED(ipx_dgram_ops) = {
1958 1958
1959SOCKOPS_WRAP(ipx_dgram, PF_IPX); 1959SOCKOPS_WRAP(ipx_dgram, PF_IPX);
1960 1960
1961static struct packet_type ipx_8023_packet_type = { 1961static struct packet_type ipx_8023_packet_type __read_mostly = {
1962 .type = __constant_htons(ETH_P_802_3), 1962 .type = cpu_to_be16(ETH_P_802_3),
1963 .func = ipx_rcv, 1963 .func = ipx_rcv,
1964}; 1964};
1965 1965
1966static struct packet_type ipx_dix_packet_type = { 1966static struct packet_type ipx_dix_packet_type __read_mostly = {
1967 .type = __constant_htons(ETH_P_IPX), 1967 .type = cpu_to_be16(ETH_P_IPX),
1968 .func = ipx_rcv, 1968 .func = ipx_rcv,
1969}; 1969};
1970 1970
@@ -1975,15 +1975,15 @@ static struct notifier_block ipx_dev_notifier = {
1975extern struct datalink_proto *make_EII_client(void); 1975extern struct datalink_proto *make_EII_client(void);
1976extern void destroy_EII_client(struct datalink_proto *); 1976extern void destroy_EII_client(struct datalink_proto *);
1977 1977
1978static unsigned char ipx_8022_type = 0xE0; 1978static const unsigned char ipx_8022_type = 0xE0;
1979static unsigned char ipx_snap_id[5] = { 0x0, 0x0, 0x0, 0x81, 0x37 }; 1979static const unsigned char ipx_snap_id[5] = { 0x0, 0x0, 0x0, 0x81, 0x37 };
1980static char ipx_EII_err_msg[] __initdata = 1980static const char ipx_EII_err_msg[] __initconst =
1981 KERN_CRIT "IPX: Unable to register with Ethernet II\n"; 1981 KERN_CRIT "IPX: Unable to register with Ethernet II\n";
1982static char ipx_8023_err_msg[] __initdata = 1982static const char ipx_8023_err_msg[] __initconst =
1983 KERN_CRIT "IPX: Unable to register with 802.3\n"; 1983 KERN_CRIT "IPX: Unable to register with 802.3\n";
1984static char ipx_llc_err_msg[] __initdata = 1984static const char ipx_llc_err_msg[] __initconst =
1985 KERN_CRIT "IPX: Unable to register with 802.2\n"; 1985 KERN_CRIT "IPX: Unable to register with 802.2\n";
1986static char ipx_snap_err_msg[] __initdata = 1986static const char ipx_snap_err_msg[] __initconst =
1987 KERN_CRIT "IPX: Unable to register with SNAP\n"; 1987 KERN_CRIT "IPX: Unable to register with SNAP\n";
1988 1988
1989static int __init ipx_init(void) 1989static int __init ipx_init(void)