Staging: pata_rdc: use PCI_DEVICE
authorGreg Kroah-Hartman <[email protected]>
Wed, 3 Jun 2009 16:47:57 +0000 (09:47 -0700)
committerGreg Kroah-Hartman <[email protected]>
Fri, 19 Jun 2009 18:00:56 +0000 (11:00 -0700)
Use the PCI_DEVICE macro, that's what it is there for...

Cc: Kevin Huang <[email protected]>
Cc: Tomy Wang <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/staging/pata_rdc/pata_rdc.c

index ab0e1cce40caabd6ac8d54c61adbdd4b852f806d..c1a18e6b67d79320670295b65833e200acd3a27a 100644 (file)
@@ -32,8 +32,8 @@
 
 
 static const struct pci_device_id rdc_pata_id_table[] = {
-       { 0x17F3, 0x1011, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RDC_17F31011},
-       { 0x17F3, 0x1012, PCI_ANY_ID, PCI_ANY_ID, 0, 0, RDC_17F31012},
+       { PCI_DEVICE(0x17F3, 0x1011), RDC_17F31011},
+       { PCI_DEVICE(0x17F3, 0x1012), RDC_17F31012},
        { }     /* terminate list */
 };
 MODULE_DEVICE_TABLE(pci, rdc_pata_id_table);