aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2013-10-10 13:50:01 -0400
committerJohan Hedberg <johan.hedberg@intel.com>2013-10-10 16:10:00 -0400
commit87d82ee25785cd31927ea62ad539b63cc811d433 (patch)
tree4b61e53ceb5a41a0808904214a45251f732a4f8b /drivers/bluetooth
parent19cf55a234d06d09f0c19d9d436b01ea53ec0377 (diff)
Bluetooth: Remove unused bluecard_hci_ioctl() callback
The bluecard_hci_ioctl() function is not used and thus remove it. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/bluecard_cs.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/drivers/bluetooth/bluecard_cs.c b/drivers/bluetooth/bluecard_cs.c
index 6c3e3d43c718..aa872c9b3fc2 100644
--- a/drivers/bluetooth/bluecard_cs.c
+++ b/drivers/bluetooth/bluecard_cs.c
@@ -693,12 +693,6 @@ static int bluecard_hci_send_frame(struct sk_buff *skb)
693} 693}
694 694
695 695
696static int bluecard_hci_ioctl(struct hci_dev *hdev, unsigned int cmd, unsigned long arg)
697{
698 return -ENOIOCTLCMD;
699}
700
701
702 696
703/* ======================== Card services HCI interaction ======================== */ 697/* ======================== Card services HCI interaction ======================== */
704 698
@@ -734,11 +728,10 @@ static int bluecard_open(bluecard_info_t *info)
734 hci_set_drvdata(hdev, info); 728 hci_set_drvdata(hdev, info);
735 SET_HCIDEV_DEV(hdev, &info->p_dev->dev); 729 SET_HCIDEV_DEV(hdev, &info->p_dev->dev);
736 730
737 hdev->open = bluecard_hci_open; 731 hdev->open = bluecard_hci_open;
738 hdev->close = bluecard_hci_close; 732 hdev->close = bluecard_hci_close;
739 hdev->flush = bluecard_hci_flush; 733 hdev->flush = bluecard_hci_flush;
740 hdev->send = bluecard_hci_send_frame; 734 hdev->send = bluecard_hci_send_frame;
741 hdev->ioctl = bluecard_hci_ioctl;
742 735
743 id = inb(iobase + 0x30); 736 id = inb(iobase + 0x30);
744 737