diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2013-10-11 07:46:18 -0700 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2013-10-11 17:05:18 +0200 |
commit | 54265202f164d7797d9eb6ec478598c76c0d8d6e (patch) | |
tree | 922d2b5679ec74c46af8cc1659505b621c0395c9 /drivers/bluetooth/btusb.c | |
parent | 602987758b0a3bfb0af5b0931c302b8f552c8d2e (diff) | |
download | linux-54265202f164d7797d9eb6ec478598c76c0d8d6e.tar.gz linux-54265202f164d7797d9eb6ec478598c76c0d8d6e.tar.bz2 linux-54265202f164d7797d9eb6ec478598c76c0d8d6e.zip |
Bluetooth: Declare btusb_table[] and blacklist_table[] as const
The btusb_table[] and blacklist_table[] USB device tables can be
declared as const.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'drivers/bluetooth/btusb.c')
-rw-r--r-- | drivers/bluetooth/btusb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 621069cb3053..30868fa870f6 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -50,7 +50,7 @@ static struct usb_driver btusb_driver; #define BTUSB_ATH3012 0x80 #define BTUSB_INTEL 0x100 -static struct usb_device_id btusb_table[] = { +static const struct usb_device_id btusb_table[] = { /* Generic Bluetooth USB device */ { USB_DEVICE_INFO(0xe0, 0x01, 0x01) }, @@ -121,7 +121,7 @@ static struct usb_device_id btusb_table[] = { MODULE_DEVICE_TABLE(usb, btusb_table); -static struct usb_device_id blacklist_table[] = { +static const struct usb_device_id blacklist_table[] = { /* CSR BlueCore devices */ { USB_DEVICE(0x0a12, 0x0001), .driver_info = BTUSB_CSR }, |