]> Pileus Git - ~andy/linux/commitdiff
[PATCH] hfc_usb: fix usb device table
authorAndrew Morton <akpm@osdl.org>
Tue, 15 Nov 2005 08:09:13 +0000 (00:09 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Tue, 15 Nov 2005 16:59:19 +0000 (08:59 -0800)
We need to use the USB_DEVICE macro here, else the modinfo aliases go all wrong.

Also, correctly terminate the table, as noted by Dave Jones <davej@redhat.com>

Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Acked-by: Karsten Keil <kkeil@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/isdn/hisax/hfc_usb.c

index 32bf0d5d0f9a0d0692414c683a6547c3050be5e9..f8457ef488260bc4e4af7db6a3cdc9c672c15b5a 100644 (file)
@@ -71,78 +71,68 @@ typedef struct {
 /****************************************/
 static struct usb_device_id hfcusb_idtab[] = {
        {
-        .idVendor = 0x0959,
-        .idProduct = 0x2bd0,
+        USB_DEVICE(0x0959, 0x2bd0),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_OFF, {4, 0, 2, 1},
                           "ISDN USB TA (Cologne Chip HFC-S USB based)"}),
        },
        {
-        .idVendor = 0x0675,
-        .idProduct = 0x1688,
+        USB_DEVICE(0x0675, 0x1688),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_SCHEME1, {1, 2, 0, 0},
                           "DrayTek miniVigor 128 USB ISDN TA"}),
        },
        {
-        .idVendor = 0x07b0,
-        .idProduct = 0x0007,
+        USB_DEVICE(0x07b0, 0x0007),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_SCHEME1, {0x80, -64, -32, -16},
                           "Billion tiny USB ISDN TA 128"}),
        },
        {
-        .idVendor = 0x0742,
-        .idProduct = 0x2008,
+        USB_DEVICE(0x0742, 0x2008),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_SCHEME1, {4, 0, 2, 1},
                           "Stollmann USB TA"}),
         },
        {
-        .idVendor = 0x0742,
-        .idProduct = 0x2009,
+        USB_DEVICE(0x0742, 0x2009),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_SCHEME1, {4, 0, 2, 1},
                           "Aceex USB ISDN TA"}),
         },
        {
-        .idVendor = 0x0742,
-        .idProduct = 0x200A,
+        USB_DEVICE(0x0742, 0x200A),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_SCHEME1, {4, 0, 2, 1},
                           "OEM USB ISDN TA"}),
         },
        {
-        .idVendor = 0x08e3,
-        .idProduct = 0x0301,
+        USB_DEVICE(0x08e3, 0x0301),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_SCHEME1, {2, 0, 1, 4},
                           "Olitec USB RNIS"}),
         },
        {
-        .idVendor = 0x07fa,
-        .idProduct = 0x0846,
+        USB_DEVICE(0x07fa, 0x0846),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_SCHEME1, {0x80, -64, -32, -16},
                           "Bewan Modem RNIS USB"}),
         },
        {
-        .idVendor = 0x07fa,
-        .idProduct = 0x0847,
+        USB_DEVICE(0x07fa, 0x0847),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_SCHEME1, {0x80, -64, -32, -16},
                           "Djinn Numeris USB"}),
         },
        {
-        .idVendor = 0x07b0,
-        .idProduct = 0x0006,
+        USB_DEVICE(0x07b0, 0x0006),
         .driver_info = (unsigned long) &((hfcsusb_vdata)
                          {LED_SCHEME1, {0x80, -64, -32, -16},
                           "Twister ISDN TA"}),
         },
+       { }
 };
 
-
 /***************************************************************/
 /* structure defining input+output fifos (interrupt/bulk mode) */
 /***************************************************************/