Commit 506ebdb2 authored by David S. Miller's avatar David S. Miller

net/bluetooth/hci_sock.c: Fix recvmsg/sendmsg args.

parent dd122de5
......@@ -316,7 +316,7 @@ static inline void hci_sock_cmsg(struct sock *sk, struct msghdr *msg, struct sk_
put_cmsg(msg, SOL_HCI, HCI_CMSG_TSTAMP, sizeof(skb->stamp), &skb->stamp);
}
static int hci_sock_recvmsg(struct socket *sock, struct msghdr *msg, int len, int flags, struct scm_cookie *scm)
static int hci_sock_recvmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, int len, int flags, struct scm_cookie *scm)
{
int noblock = flags & MSG_DONTWAIT;
struct sock *sk = sock->sk;
......@@ -352,7 +352,7 @@ static int hci_sock_recvmsg(struct socket *sock, struct msghdr *msg, int len, in
return err ? : copied;
}
static int hci_sock_sendmsg(struct socket *sock, struct msghdr *msg, int len,
static int hci_sock_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *msg, int len,
struct scm_cookie *scm)
{
struct sock *sk = sock->sk;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment