Skip to content

Commit

Permalink
Bluetooth: Remove hdev->ioctl driver callback
Browse files Browse the repository at this point in the history
Since there is no use of hdev->ioctl by any Bluetooth driver since
ever, so just lets remove it.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
  • Loading branch information
holtmann authored and Johan Hedberg committed Oct 10, 2013
1 parent e93ac9c commit 324d36e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion include/net/bluetooth/hci_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,6 @@ struct hci_dev {
int (*setup)(struct hci_dev *hdev);
int (*send)(struct sk_buff *skb);
void (*notify)(struct hci_dev *hdev, unsigned int evt);
int (*ioctl)(struct hci_dev *hdev, unsigned int cmd, unsigned long arg);
};

#define HCI_PHY_HANDLE(handle) (handle & 0xff)
Expand Down
5 changes: 1 addition & 4 deletions net/bluetooth/hci_sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 +553,7 @@ static int hci_sock_bound_ioctl(struct sock *sk, unsigned int cmd,
return hci_sock_blacklist_del(hdev, (void __user *) arg);
}

if (hdev->ioctl)
return hdev->ioctl(hdev, cmd, arg);

return -EINVAL;
return -ENOIOCTLCMD;
}

static int hci_sock_ioctl(struct socket *sock, unsigned int cmd,
Expand Down

0 comments on commit 324d36e

Please sign in to comment.