aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/pppoe.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/pppoe.c')
-rw-r--r--drivers/net/pppoe.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/net/pppoe.c b/drivers/net/pppoe.c
index 71e303b28646..9369f811075d 100644
--- a/drivers/net/pppoe.c
+++ b/drivers/net/pppoe.c
@@ -85,7 +85,7 @@ static int pppoe_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
85static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb); 85static int pppoe_xmit(struct ppp_channel *chan, struct sk_buff *skb);
86static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb); 86static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb);
87 87
88static struct proto_ops pppoe_ops; 88static const struct proto_ops pppoe_ops;
89static DEFINE_RWLOCK(pppoe_hash_lock); 89static DEFINE_RWLOCK(pppoe_hash_lock);
90 90
91static struct ppp_channel_ops pppoe_chan_ops; 91static struct ppp_channel_ops pppoe_chan_ops;
@@ -1063,9 +1063,7 @@ static int __init pppoe_proc_init(void)
1063static inline int pppoe_proc_init(void) { return 0; } 1063static inline int pppoe_proc_init(void) { return 0; }
1064#endif /* CONFIG_PROC_FS */ 1064#endif /* CONFIG_PROC_FS */
1065 1065
1066/* ->ioctl are set at pppox_create */ 1066static const struct proto_ops pppoe_ops = {
1067
1068static struct proto_ops pppoe_ops = {
1069 .family = AF_PPPOX, 1067 .family = AF_PPPOX,
1070 .owner = THIS_MODULE, 1068 .owner = THIS_MODULE,
1071 .release = pppoe_release, 1069 .release = pppoe_release,
@@ -1081,7 +1079,8 @@ static struct proto_ops pppoe_ops = {
1081 .getsockopt = sock_no_getsockopt, 1079 .getsockopt = sock_no_getsockopt,
1082 .sendmsg = pppoe_sendmsg, 1080 .sendmsg = pppoe_sendmsg,
1083 .recvmsg = pppoe_recvmsg, 1081 .recvmsg = pppoe_recvmsg,
1084 .mmap = sock_no_mmap 1082 .mmap = sock_no_mmap,
1083 .ioctl = pppox_ioctl,
1085}; 1084};
1086 1085
1087static struct pppox_proto pppoe_proto = { 1086static struct pppox_proto pppoe_proto = {