summaryrefslogtreecommitdiffstats
path: root/drivers/usb/wusbcore
diff options
context:
space:
mode:
authorDan Carpenter2012-10-02 10:28:18 +0200
committerGreg Kroah-Hartman2012-10-22 20:33:34 +0200
commitda31fe451a7a717c01ae26fa1e9e46fa43921b7d (patch)
treebce29cd4a5b30fbb2da4953c474d228046335f2b /drivers/usb/wusbcore
parentUSB: OHCI: make ohci-platform use devm_request_and_ioremap helper (diff)
downloadkernel-qcow2-linux-da31fe451a7a717c01ae26fa1e9e46fa43921b7d.tar.gz
kernel-qcow2-linux-da31fe451a7a717c01ae26fa1e9e46fa43921b7d.tar.xz
kernel-qcow2-linux-da31fe451a7a717c01ae26fa1e9e46fa43921b7d.zip
WUSB: remove an unnused variable
The "wusb_cap_descr_default" is never used. GCC doesn't complain about it because we have that line ".bLength = sizeof(wusb_cap_descr_default)" inside the definition itself. Clang complains though. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/wusbcore')
-rw-r--r--drivers/usb/wusbcore/devconnect.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/usb/wusbcore/devconnect.c b/drivers/usb/wusbcore/devconnect.c
index 231009af65a3..1d365316960c 100644
--- a/drivers/usb/wusbcore/devconnect.c
+++ b/drivers/usb/wusbcore/devconnect.c
@@ -847,19 +847,6 @@ static void wusb_dev_bos_rm(struct wusb_dev *wusb_dev)
wusb_dev->wusb_cap_descr = NULL;
};
-static struct usb_wireless_cap_descriptor wusb_cap_descr_default = {
- .bLength = sizeof(wusb_cap_descr_default),
- .bDescriptorType = USB_DT_DEVICE_CAPABILITY,
- .bDevCapabilityType = USB_CAP_TYPE_WIRELESS_USB,
-
- .bmAttributes = USB_WIRELESS_BEACON_NONE,
- .wPHYRates = cpu_to_le16(USB_WIRELESS_PHY_53),
- .bmTFITXPowerInfo = 0,
- .bmFFITXPowerInfo = 0,
- .bmBandGroup = cpu_to_le16(0x0001), /* WUSB1.0[7.4.1] bottom */
- .bReserved = 0
-};
-
/*
* USB stack's device addition Notifier Callback
*