USB misc: make USB device id constant
authorNémeth Márton <nm127@freemail.hu>
Sun, 10 Jan 2010 14:34:45 +0000 (15:34 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 2 Mar 2010 22:54:17 +0000 (14:54 -0800)
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.

The semantic match that finds this kind of pattern is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@r@
disable decl_init,const_decl_init;
identifier I1, I2, x;
@@
struct I1 {
  ...
  const struct I2 *x;
  ...
};
@s@
identifier r.I1, y;
identifier r.x, E;
@@
struct I1 y = {
  .x = E,
};
@c@
identifier r.I2;
identifier s.E;
@@
const struct I2 E[] = ... ;
@depends on !c@
identifier r.I2;
identifier s.E;
@@
+ const
struct I2 E[] = ...;
// </smpl>

Signed-off-by: Németh Márton <nm127@freemail.hu>
Cc: Julia Lawall <julia@diku.dk>
Cc: cocci@diku.dk
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
22 files changed:
drivers/usb/misc/adutux.c
drivers/usb/misc/appledisplay.c
drivers/usb/misc/berry_charge.c
drivers/usb/misc/cypress_cy7c63.c
drivers/usb/misc/cytherm.c
drivers/usb/misc/emi26.c
drivers/usb/misc/emi62.c
drivers/usb/misc/ftdi-elan.c
drivers/usb/misc/idmouse.c
drivers/usb/misc/iowarrior.c
drivers/usb/misc/isight_firmware.c
drivers/usb/misc/ldusb.c
drivers/usb/misc/legousbtower.c
drivers/usb/misc/rio500.c
drivers/usb/misc/sisusbvga/sisusb.c
drivers/usb/misc/trancevibrator.c
drivers/usb/misc/usblcd.c
drivers/usb/misc/usbled.c
drivers/usb/misc/usbsevseg.c
drivers/usb/misc/usbtest.c
drivers/usb/misc/uss720.c
drivers/usb/misc/vstusb.c

index 20352654201399d78fb7c265285c714694d261f9..306e97825b36bbb2d9d6ae3885083189b5a5c765 100644 (file)
@@ -56,7 +56,7 @@ MODULE_PARM_DESC(debug, "Debug enabled or not");
 #define ADU_PRODUCT_ID 0x0064
 
 /* table of devices that work with this driver */
-static struct usb_device_id device_table [] = {
+static const struct usb_device_id device_table[] = {
        { USB_DEVICE(ADU_VENDOR_ID, ADU_PRODUCT_ID) },          /* ADU100 */
        { USB_DEVICE(ADU_VENDOR_ID, ADU_PRODUCT_ID+20) },       /* ADU120 */
        { USB_DEVICE(ADU_VENDOR_ID, ADU_PRODUCT_ID+30) },       /* ADU130 */
index 1eb9e4162cc6a916a3ed8cce7641be7ffb2aa529..516079d703b416b9938ae78783b5b7cb3db6a461 100644 (file)
@@ -57,7 +57,7 @@
        .bInterfaceProtocol = 0x00
 
 /* table of devices that work with this driver */
-static struct usb_device_id appledisplay_table [] = {
+static const struct usb_device_id appledisplay_table[] = {
        { APPLEDISPLAY_DEVICE(0x9218) },
        { APPLEDISPLAY_DEVICE(0x9219) },
        { APPLEDISPLAY_DEVICE(0x921c) },
index c05a85bc5925c7ce1407ef504ec7fcfe77d57a91..a96e58ce8b343763e84eb589ca8eb35758b725d0 100644 (file)
@@ -39,7 +39,7 @@ static int pearl_dual_mode = 1;
        if (debug)                                              \
                dev_printk(KERN_DEBUG , dev , format , ## arg)
 
-static struct usb_device_id id_table [] = {
+static const struct usb_device_id id_table[] = {
        { USB_DEVICE(RIM_VENDOR, BLACKBERRY) },
        { USB_DEVICE(RIM_VENDOR, BLACKBERRY_PEARL) },
        { USB_DEVICE(RIM_VENDOR, BLACKBERRY_PEARL_DUAL) },
index 5720bfef6a389ada6709be2ffac3aca06a1d969a..1547d8cac5fb96fcae8f87b0085a63c277eb1320 100644 (file)
@@ -56,7 +56,7 @@
 
 
 /* table of devices that work with this driver */
-static struct usb_device_id cypress_table [] = {
+static const struct usb_device_id cypress_table[] = {
        { USB_DEVICE(CYPRESS_VENDOR_ID, CYPRESS_PRODUCT_ID) },
        { }
 };
index 4fb3c38b924b2fec1aad271da12f851e81f6e6e2..b9cbbbda824558f20802d18b28ae9151ce59a3d3 100644 (file)
@@ -27,7 +27,7 @@
 #define USB_SKEL_VENDOR_ID     0x04b4
 #define USB_SKEL_PRODUCT_ID    0x0002
 
-static struct usb_device_id id_table [] = {
+static const struct usb_device_id id_table[] = {
        { USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) },
        { }
 };
index 879a980ca8c4a1a0b37a892b4cfc333539c15a55..a6521c95f683255597fb72f4c8a32a4b2bdfae82 100644 (file)
@@ -245,7 +245,7 @@ wraperr:
        return err;
 }
 
-static struct usb_device_id id_table [] = {
+static const struct usb_device_id id_table[] = {
        { USB_DEVICE(EMI26_VENDOR_ID, EMI26_PRODUCT_ID) },
        { USB_DEVICE(EMI26_VENDOR_ID, EMI26B_PRODUCT_ID) },
        { }                                             /* Terminating entry */
index 59860b328534d893a8075f7cb2681a77f6fe69ce..fc15ad4c3139ca17432ced814bdc3204c559f56a 100644 (file)
@@ -259,7 +259,7 @@ wraperr:
        return err;
 }
 
-static __devinitdata struct usb_device_id id_table [] = {
+static const struct usb_device_id id_table[] __devinitconst = {
        { USB_DEVICE(EMI62_VENDOR_ID, EMI62_PRODUCT_ID) },
        { }                                             /* Terminating entry */
 };
index 9d0675ed0d4c89e0acbf488dfd6beb7df9e9131c..f21bf5160f8321ffbd45d4b58c16496215b753c8 100644 (file)
@@ -86,7 +86,7 @@ static struct list_head ftdi_static_list;
 #define USB_FTDI_ELAN_VENDOR_ID 0x0403
 #define USB_FTDI_ELAN_PRODUCT_ID 0xd6ea
 /* table of devices that work with this driver*/
-static struct usb_device_id ftdi_elan_table[] = {
+static const struct usb_device_id ftdi_elan_table[] = {
         {USB_DEVICE(USB_FTDI_ELAN_VENDOR_ID, USB_FTDI_ELAN_PRODUCT_ID)},
         { /* Terminating entry */ }
 };
index 1337a9ce80b9c8a66a546c646e24261ae6e73433..a54c3cb804ce4a5e6cf315aa03508ac3231ee0c8 100644 (file)
@@ -48,7 +48,7 @@
 #define ID_CHERRY  0x0010
 
 /* device ID table */
-static struct usb_device_id idmouse_table[] = {
+static const struct usb_device_id idmouse_table[] = {
        {USB_DEVICE(ID_SIEMENS, ID_IDMOUSE)}, /* Siemens ID Mouse (Professional) */
        {USB_DEVICE(ID_SIEMENS, ID_CHERRY )}, /* Cherry FingerTIP ID Board       */
        {}                                    /* terminating null entry          */
index e75bb87ee92b87f39d67b883bb22f4f77fce3a79..5206423211fb218adb5babed450b28471625a30e 100644 (file)
@@ -139,7 +139,7 @@ static int usb_set_report(struct usb_interface *intf, unsigned char type,
 /* driver registration */
 /*---------------------*/
 /* table of devices that work with this driver */
-static struct usb_device_id iowarrior_ids[] = {
+static const struct usb_device_id iowarrior_ids[] = {
        {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW40)},
        {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW24)},
        {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOWPV1)},
index b897f6554ecdd0e282fd4d5b0dfed072f041f3b7..0316c01e7823b8e4af027fa5d8cf47f60210cd6d 100644 (file)
@@ -26,7 +26,7 @@
 #include <linux/errno.h>
 #include <linux/module.h>
 
-static struct usb_device_id id_table[] = {
+static const struct usb_device_id id_table[] = {
        {USB_DEVICE(0x05ac, 0x8300)},
        {},
 };
index 90f130126c10d605db2115ee6c16afe8329266cb..7c0bd13eccb2cf0e0ee216a89a901108c274556a 100644 (file)
@@ -69,7 +69,7 @@
 #endif
 
 /* table of devices that work with this driver */
-static struct usb_device_id ld_usb_table [] = {
+static const struct usb_device_id ld_usb_table[] = {
        { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY) },
        { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY) },
        { USB_DEVICE(USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY) },
index faa6d623de789ea5e6334e84651ba0675f852cf9..3d4378fb441083c7032b0b6567efc482407dd76c 100644 (file)
@@ -192,7 +192,7 @@ struct tower_get_version_reply {
 
 
 /* table of devices that work with this driver */
-static struct usb_device_id tower_table [] = {
+static const struct usb_device_id tower_table[] = {
        { USB_DEVICE(LEGO_USB_TOWER_VENDOR_ID, LEGO_USB_TOWER_PRODUCT_ID) },
        { }                                     /* Terminating entry */
 };
index 32d0199d0c3220a1c037856e5143bbd641b2cf38..17e4eecaee734f12dccff1c54cee282ec12862f1 100644 (file)
@@ -510,7 +510,7 @@ static void disconnect_rio(struct usb_interface *intf)
        }
 }
 
-static struct usb_device_id rio_table [] = {
+static const struct usb_device_id rio_table[] = {
        { USB_DEVICE(0x0841, 1) },              /* Rio 500 */
        { }                                     /* Terminating entry */
 };
index 8b37a4b9839edcbc047258f391c73a8a16a82263..bb0b315b521dd368b3dd2f798f9403f0f2330e43 100644 (file)
@@ -3238,7 +3238,7 @@ static void sisusb_disconnect(struct usb_interface *intf)
        kref_put(&sisusb->kref, sisusb_delete);
 }
 
-static struct usb_device_id sisusb_table [] = {
+static const struct usb_device_id sisusb_table[] = {
        { USB_DEVICE(0x0711, 0x0550) },
        { USB_DEVICE(0x0711, 0x0900) },
        { USB_DEVICE(0x0711, 0x0901) },
index 2e14102955c5936def7394c9faea1306696f18bb..5da28eaee314c0e0ecdba8bed88f925e71a123ed 100644 (file)
@@ -33,7 +33,7 @@
 #define TRANCEVIBRATOR_VENDOR_ID       0x0b49  /* ASCII Corporation */
 #define TRANCEVIBRATOR_PRODUCT_ID      0x064f  /* Trance Vibrator */
 
-static struct usb_device_id id_table [] = {
+static const struct usb_device_id id_table[] = {
        { USB_DEVICE(TRANCEVIBRATOR_VENDOR_ID, TRANCEVIBRATOR_PRODUCT_ID) },
        { },
 };
index 4fb120357c5569cc7ab1bc5a90e83f1851910f54..499d7508be9ac26db85965f9c854b41ea1d83311 100644 (file)
@@ -30,7 +30,7 @@
 #define IOCTL_GET_DRV_VERSION  2
 
 
-static struct usb_device_id id_table [] = {
+static const struct usb_device_id id_table[] = {
        { .idVendor = 0x10D2, .match_flags = USB_DEVICE_ID_MATCH_VENDOR, },
        { },
 };
index 06cb71942dc7ee87e52c56c1be0410d64a707be4..63da2c3c838fd0b6495d0429a870e3b1e035e9dd 100644 (file)
@@ -24,7 +24,7 @@
 #define PRODUCT_ID     0x1223
 
 /* table of devices that work with this driver */
-static struct usb_device_id id_table [] = {
+static const struct usb_device_id id_table[] = {
        { USB_DEVICE(VENDOR_ID, PRODUCT_ID) },
        { },
 };
index 3db255537e7913d2de5d0b03781fc20768af2a91..a9555cb901a1df27274d415255563242d74c178a 100644 (file)
@@ -27,7 +27,7 @@
 #define MAXLEN         6
 
 /* table of devices that work with this driver */
-static struct usb_device_id id_table[] = {
+static const struct usb_device_id id_table[] = {
        { USB_DEVICE(VENDOR_ID, PRODUCT_ID) },
        { },
 };
index 707a87da77f89a3bfb22ca0cf3cfe061c7497a1c..a21cce6f7403e723e42adad28524789ac807a4e4 100644 (file)
@@ -2097,7 +2097,7 @@ static struct usbtest_info generic_info = {
 #endif
 
 
-static struct usb_device_id id_table [] = {
+static const struct usb_device_id id_table[] = {
 
        /*-------------------------------------------------------------*/
 
index 9a6c27a01793ba2ff6111ede23e769ade617b64d..f56fed53f2dd202b8f6cc551488e3590f006af7a 100644 (file)
@@ -770,7 +770,7 @@ static void uss720_disconnect(struct usb_interface *intf)
 }
 
 /* table of cables that work through this driver */
-static struct usb_device_id uss720_table [] = {
+static const struct usb_device_id uss720_table[] = {
        { USB_DEVICE(0x047e, 0x1001) },
        { USB_DEVICE(0x0557, 0x2001) },
        { USB_DEVICE(0x0729, 0x1284) },
index f26ea8dc15773dd8d3393ce25e92238c32fc99c2..874c81bb27b9c415f6a349f777008f05d823b6fa 100644 (file)
@@ -61,7 +61,7 @@
 
 #define VST_MAXBUFFER          (64*1024)
 
-static struct usb_device_id id_table[] = {
+static const struct usb_device_id id_table[] = {
        { USB_DEVICE(USB_VENDOR_OCEANOPTICS, USB_PRODUCT_USB2000)},
        { USB_DEVICE(USB_VENDOR_OCEANOPTICS, USB_PRODUCT_HR4000)},
        { USB_DEVICE(USB_VENDOR_OCEANOPTICS, USB_PRODUCT_USB650)},