]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: comedi (adl_pci6208): use PCI_DEVICE() macro
authorJavier Martinez Canillas <martinez.javier@gmail.com>
Sat, 7 Aug 2010 06:38:37 +0000 (02:38 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 31 Aug 2010 21:32:28 +0000 (14:32 -0700)
Use PCI_DEVICE() macro for pci table entries on comedi driver and thus improves readability.

Signed-off-by: Javier Martinez Canillas <martinez.javier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/comedi/drivers/adl_pci6208.c

index 073d0242c28e72835b2a62659bf6fa7f2382795b..4fc9e8520217ad2bfb338dcb878924e1607bad8a 100644 (file)
@@ -90,9 +90,8 @@ static const struct pci6208_board pci6208_boards[] = {
 static DEFINE_PCI_DEVICE_TABLE(pci6208_pci_table) = {
        /* { PCI_VENDOR_ID_ADLINK, 0x6208, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, */
        /* { PCI_VENDOR_ID_ADLINK, 0x6208, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, */
-       {
-       PCI_VENDOR_ID_ADLINK, 0x6208, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, {
-       0}
+       { PCI_DEVICE(PCI_VENDOR_ID_ADLINK, 0x6208) },
+       { 0 }
 };
 
 MODULE_DEVICE_TABLE(pci, pci6208_pci_table);