net: Remove iocb argument from sendmsg and recvmsg
[deliverable/linux.git] / drivers / net / ppp / pppoe.c
index 9c97e9bcf5f5a0ababe8f92be57bc4de74959343..ff059e1d8ac6c8c478625a55e54c4c41c945ad9a 100644 (file)
@@ -835,8 +835,8 @@ static int pppoe_ioctl(struct socket *sock, unsigned int cmd,
        return err;
 }
 
-static int pppoe_sendmsg(struct kiocb *iocb, struct socket *sock,
-                 struct msghdr *m, size_t total_len)
+static int pppoe_sendmsg(struct socket *sock, struct msghdr *m,
+                        size_t total_len)
 {
        struct sk_buff *skb;
        struct sock *sk = sock->sk;
@@ -977,8 +977,8 @@ static const struct ppp_channel_ops pppoe_chan_ops = {
        .start_xmit = pppoe_xmit,
 };
 
-static int pppoe_recvmsg(struct kiocb *iocb, struct socket *sock,
-                 struct msghdr *m, size_t total_len, int flags)
+static int pppoe_recvmsg(struct socket *sock, struct msghdr *m,
+                        size_t total_len, int flags)
 {
        struct sock *sk = sock->sk;
        struct sk_buff *skb;
This page took 0.043404 seconds and 5 git commands to generate.