diff options
author | Márton Németh <nm127@freemail.hu> | 2010-01-12 02:49:14 -0500 |
---|---|---|
committer | David Vrabel <david.vrabel@csr.com> | 2010-01-14 12:14:08 -0500 |
commit | 34446d05dd255b34518c76d2b8760161e63fe0c1 (patch) | |
tree | 6da0769742d8967ef08dc2dfdacd4c244a7ced67 /drivers/uwb/hwa-rc.c | |
parent | 145434bee45bd353f9a93e9b411f7aa7cc677c08 (diff) |
uwb: make USB device id table constant
The id_table field of the struct usb_device_id is constant in <linux/usb.h>
so it is worth to make the initialization data also constant.
Signed-off-by: Márton Németh <nm127@freemail.hu>
Signed-off-by: David Vrabel <david.vrabel@csr.com>
Diffstat (limited to 'drivers/uwb/hwa-rc.c')
-rw-r--r-- | drivers/uwb/hwa-rc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/uwb/hwa-rc.c b/drivers/uwb/hwa-rc.c index e7eeb63fab23..b409c228f254 100644 --- a/drivers/uwb/hwa-rc.c +++ b/drivers/uwb/hwa-rc.c | |||
@@ -891,7 +891,7 @@ static int hwarc_post_reset(struct usb_interface *iface) | |||
891 | } | 891 | } |
892 | 892 | ||
893 | /** USB device ID's that we handle */ | 893 | /** USB device ID's that we handle */ |
894 | static struct usb_device_id hwarc_id_table[] = { | 894 | static const struct usb_device_id hwarc_id_table[] = { |
895 | /* D-Link DUB-1210 */ | 895 | /* D-Link DUB-1210 */ |
896 | { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3d02, 0xe0, 0x01, 0x02), | 896 | { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3d02, 0xe0, 0x01, 0x02), |
897 | .driver_info = WUSB_QUIRK_WHCI_CMD_EVT }, | 897 | .driver_info = WUSB_QUIRK_WHCI_CMD_EVT }, |