Commit 5fad16b5 authored by Arvind Yadav's avatar Arvind Yadav Committed by Mauro Carvalho Chehab

[media] media: rc: constify usb_device_id

usb_device_id are not supposed to change at runtime. All functions
working with usb_device_id provided by <linux/usb.h> work with
const usb_device_id. So mark the non-const structs as const.
Signed-off-by: default avatarArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent b15e3937
...@@ -198,7 +198,7 @@ static const struct ati_receiver_type type_firefly = { ...@@ -198,7 +198,7 @@ static const struct ati_receiver_type type_firefly = {
.default_keymap = RC_MAP_SNAPSTREAM_FIREFLY .default_keymap = RC_MAP_SNAPSTREAM_FIREFLY
}; };
static struct usb_device_id ati_remote_table[] = { static const struct usb_device_id ati_remote_table[] = {
{ {
USB_DEVICE(ATI_REMOTE_VENDOR_ID, LOLA_REMOTE_PRODUCT_ID), USB_DEVICE(ATI_REMOTE_VENDOR_ID, LOLA_REMOTE_PRODUCT_ID),
.driver_info = (unsigned long)&type_ati .driver_info = (unsigned long)&type_ati
......
...@@ -245,7 +245,7 @@ static void igorplugusb_disconnect(struct usb_interface *intf) ...@@ -245,7 +245,7 @@ static void igorplugusb_disconnect(struct usb_interface *intf)
usb_free_urb(ir->urb); usb_free_urb(ir->urb);
} }
static struct usb_device_id igorplugusb_table[] = { static const struct usb_device_id igorplugusb_table[] = {
/* Igor Plug USB (Atmel's Manufact. ID) */ /* Igor Plug USB (Atmel's Manufact. ID) */
{ USB_DEVICE(0x03eb, 0x0002) }, { USB_DEVICE(0x03eb, 0x0002) },
/* Fit PC2 Infrared Adapter */ /* Fit PC2 Infrared Adapter */
......
...@@ -346,7 +346,7 @@ static const struct imon_usb_dev_descr imon_ir_raw = { ...@@ -346,7 +346,7 @@ static const struct imon_usb_dev_descr imon_ir_raw = {
* devices use the SoundGraph vendor ID (0x15c2). This driver only supports * devices use the SoundGraph vendor ID (0x15c2). This driver only supports
* the ffdc and later devices, which do onboard decoding. * the ffdc and later devices, which do onboard decoding.
*/ */
static struct usb_device_id imon_usb_id_table[] = { static const struct usb_device_id imon_usb_id_table[] = {
/* /*
* Several devices with this same device ID, all use iMON_PAD.inf * Several devices with this same device ID, all use iMON_PAD.inf
* SoundGraph iMON PAD (IR & VFD) * SoundGraph iMON PAD (IR & VFD)
......
...@@ -249,7 +249,7 @@ static const struct mceusb_model mceusb_model[] = { ...@@ -249,7 +249,7 @@ static const struct mceusb_model mceusb_model[] = {
}, },
}; };
static struct usb_device_id mceusb_dev_table[] = { static const struct usb_device_id mceusb_dev_table[] = {
/* Original Microsoft MCE IR Transceiver (often HP-branded) */ /* Original Microsoft MCE IR Transceiver (often HP-branded) */
{ USB_DEVICE(VENDOR_MICROSOFT, 0x006d), { USB_DEVICE(VENDOR_MICROSOFT, 0x006d),
.driver_info = MCE_GEN1 }, .driver_info = MCE_GEN1 },
......
...@@ -186,7 +186,7 @@ struct redrat3_error { ...@@ -186,7 +186,7 @@ struct redrat3_error {
} __packed; } __packed;
/* table of devices that work with this driver */ /* table of devices that work with this driver */
static struct usb_device_id redrat3_dev_table[] = { static const struct usb_device_id redrat3_dev_table[] = {
/* Original version of the RedRat3 */ /* Original version of the RedRat3 */
{USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3USB_PRODUCT_ID)}, {USB_DEVICE(USB_RR3USB_VENDOR_ID, USB_RR3USB_PRODUCT_ID)},
/* Second Version/release of the RedRat3 - RetRat3-II */ /* Second Version/release of the RedRat3 - RetRat3-II */
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#define USB_STREAMZAP_PRODUCT_ID 0x0000 #define USB_STREAMZAP_PRODUCT_ID 0x0000
/* table of devices that work with this driver */ /* table of devices that work with this driver */
static struct usb_device_id streamzap_table[] = { static const struct usb_device_id streamzap_table[] = {
/* Streamzap Remote Control */ /* Streamzap Remote Control */
{ USB_DEVICE(USB_STREAMZAP_VENDOR_ID, USB_STREAMZAP_PRODUCT_ID) }, { USB_DEVICE(USB_STREAMZAP_VENDOR_ID, USB_STREAMZAP_PRODUCT_ID) },
/* Terminating entry */ /* Terminating entry */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment