]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
Bluetooth: Convert BCM92035 support to driver setup callback
authorMarcel Holtmann <marcel@holtmann.org>
Mon, 12 Nov 2012 05:02:15 +0000 (14:02 +0900)
committerJohan Hedberg <johan.hedberg@intel.com>
Thu, 4 Apr 2013 16:28:10 +0000 (19:28 +0300)
With the early init stage during setup, this quirk can be simplified
and kept fully inside the driver.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
drivers/bluetooth/btusb.c

index b82c0964dc54d22c93f6f9dde6c87edb5458ee7c..35c967f5b9fcec07f12c7a38faf21c2c5e297ec9 100644 (file)
@@ -246,6 +246,7 @@ struct btusb_data {
        struct usb_endpoint_descriptor *isoc_rx_ep;
 
        __u8 cmdreq_type;
+       unsigned long driver_info;
 
        unsigned int sco_num;
        int isoc_altsetting;
@@ -699,6 +700,26 @@ static int btusb_flush(struct hci_dev *hdev)
        return 0;
 }
 
+static int btusb_setup(struct hci_dev *hdev)
+{
+       struct btusb_data *data = hci_get_drvdata(hdev);
+
+       BT_DBG("%s", hdev->name);
+
+       if (data->driver_info & BTUSB_BCM92035) {
+               struct sk_buff *skb;
+               __u8 val = 0x00;
+
+               skb = __hci_cmd_sync(hdev, 0xfc3b, 1, &val, HCI_INIT_TIMEOUT);
+               if (IS_ERR(skb))
+                       BT_ERR("BCM92035 command failed (%ld)", -PTR_ERR(skb));
+               else
+                       kfree_skb(skb);
+       }
+
+       return 0;
+}
+
 static int btusb_send_frame(struct sk_buff *skb)
 {
        struct hci_dev *hdev = (struct hci_dev *) skb->dev;
@@ -996,6 +1017,7 @@ static int btusb_probe(struct usb_interface *intf,
                return -ENODEV;
 
        data->cmdreq_type = USB_TYPE_CLASS;
+       data->driver_info = id->driver_info;
 
        data->udev = interface_to_usbdev(intf);
        data->intf = intf;
@@ -1026,6 +1048,7 @@ static int btusb_probe(struct usb_interface *intf,
        hdev->open     = btusb_open;
        hdev->close    = btusb_close;
        hdev->flush    = btusb_flush;
+       hdev->setup    = btusb_setup;
        hdev->send     = btusb_send_frame;
        hdev->notify   = btusb_notify;
 
@@ -1066,17 +1089,6 @@ static int btusb_probe(struct usb_interface *intf,
                data->isoc = NULL;
        }
 
-       if (id->driver_info & BTUSB_BCM92035) {
-               unsigned char cmd[] = { 0x3b, 0xfc, 0x01, 0x00 };
-               struct sk_buff *skb;
-
-               skb = bt_skb_alloc(sizeof(cmd), GFP_KERNEL);
-               if (skb) {
-                       memcpy(skb_put(skb, sizeof(cmd)), cmd, sizeof(cmd));
-                       skb_queue_tail(&hdev->driver_init, skb);
-               }
-       }
-
        if (data->isoc) {
                err = usb_driver_claim_interface(&btusb_driver,
                                                        data->isoc, data);