aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth/btuart_cs.c
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@googlemail.com>2012-01-07 09:47:11 -0500
committerJohan Hedberg <johan.hedberg@intel.com>2012-02-13 10:01:23 -0500
commit3a456784d346961194bd586aabe40011dba278c1 (patch)
treec92aab8b3129a528b495249576aa8b90f966ecff /drivers/bluetooth/btuart_cs.c
parente300440beb806616094f838a92a33c5d4677ab7a (diff)
Bluetooth: btuart-cs: Remove empty destruct cb
The destruct callback is optional and we provide an empty callback so remove it. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'drivers/bluetooth/btuart_cs.c')
-rw-r--r--drivers/bluetooth/btuart_cs.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c
index 200b3a2877d6..84e02f1a45b9 100644
--- a/drivers/bluetooth/btuart_cs.c
+++ b/drivers/bluetooth/btuart_cs.c
@@ -459,11 +459,6 @@ static int btuart_hci_send_frame(struct sk_buff *skb)
459} 459}
460 460
461 461
462static void btuart_hci_destruct(struct hci_dev *hdev)
463{
464}
465
466
467static int btuart_hci_ioctl(struct hci_dev *hdev, unsigned int cmd, unsigned long arg) 462static int btuart_hci_ioctl(struct hci_dev *hdev, unsigned int cmd, unsigned long arg)
468{ 463{
469 return -ENOIOCTLCMD; 464 return -ENOIOCTLCMD;
@@ -505,7 +500,6 @@ static int btuart_open(btuart_info_t *info)
505 hdev->close = btuart_hci_close; 500 hdev->close = btuart_hci_close;
506 hdev->flush = btuart_hci_flush; 501 hdev->flush = btuart_hci_flush;
507 hdev->send = btuart_hci_send_frame; 502 hdev->send = btuart_hci_send_frame;
508 hdev->destruct = btuart_hci_destruct;
509 hdev->ioctl = btuart_hci_ioctl; 503 hdev->ioctl = btuart_hci_ioctl;
510 504
511 hdev->owner = THIS_MODULE; 505 hdev->owner = THIS_MODULE;