diff options
Diffstat (limited to 'net/atm/pvc.c')
-rw-r--r-- | net/atm/pvc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/atm/pvc.c b/net/atm/pvc.c index d4c024504f99..8d74e62b0d79 100644 --- a/net/atm/pvc.c +++ b/net/atm/pvc.c | |||
@@ -127,7 +127,8 @@ static const struct proto_ops pvc_proto_ops = { | |||
127 | }; | 127 | }; |
128 | 128 | ||
129 | 129 | ||
130 | static int pvc_create(struct net *net, struct socket *sock,int protocol) | 130 | static int pvc_create(struct net *net, struct socket *sock, int protocol, |
131 | int kern) | ||
131 | { | 132 | { |
132 | if (net != &init_net) | 133 | if (net != &init_net) |
133 | return -EAFNOSUPPORT; | 134 | return -EAFNOSUPPORT; |
@@ -137,7 +138,7 @@ static int pvc_create(struct net *net, struct socket *sock,int protocol) | |||
137 | } | 138 | } |
138 | 139 | ||
139 | 140 | ||
140 | static struct net_proto_family pvc_family_ops = { | 141 | static const struct net_proto_family pvc_family_ops = { |
141 | .family = PF_ATMPVC, | 142 | .family = PF_ATMPVC, |
142 | .create = pvc_create, | 143 | .create = pvc_create, |
143 | .owner = THIS_MODULE, | 144 | .owner = THIS_MODULE, |