aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/comedi
diff options
context:
space:
mode:
authorJavier Martinez Canillas <martinez.javier@gmail.com>2010-08-07 02:31:07 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-08-31 17:32:30 -0400
commit16f08494f4523de348988763b74e5756d482978b (patch)
treef75c50d24080614f22d191c96645851eb31f75e7 /drivers/staging/comedi
parent07c2412a5e65f3f7087473d86742b418cd4c96fb (diff)
staging: comedi (cb_pcidas): use PCI_DEVICE() macro
This is the first of a patch series that uses PCI_DEVICE() macro for pci table entries on comedi drivers and thus improving readability. Signed-off-by: Javier Martinez Canillas <martinez.javier@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/comedi')
-rw-r--r--drivers/staging/comedi/drivers/cb_pcidas.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/drivers/staging/comedi/drivers/cb_pcidas.c b/drivers/staging/comedi/drivers/cb_pcidas.c
index 6530b6c9d98..3275fc50615 100644
--- a/drivers/staging/comedi/drivers/cb_pcidas.c
+++ b/drivers/staging/comedi/drivers/cb_pcidas.c
@@ -377,16 +377,15 @@ static const struct cb_pcidas_board cb_pcidas_boards[] = {
377}; 377};
378 378
379static DEFINE_PCI_DEVICE_TABLE(cb_pcidas_pci_table) = { 379static DEFINE_PCI_DEVICE_TABLE(cb_pcidas_pci_table) = {
380 { 380 { PCI_DEVICE(PCI_VENDOR_ID_CB, 0x0001) },
381 PCI_VENDOR_ID_CB, 0x0001, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, { 381 { PCI_DEVICE(PCI_VENDOR_ID_CB, 0x000f) },
382 PCI_VENDOR_ID_CB, 0x000f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, { 382 { PCI_DEVICE(PCI_VENDOR_ID_CB, 0x0010) },
383 PCI_VENDOR_ID_CB, 0x0010, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, { 383 { PCI_DEVICE(PCI_VENDOR_ID_CB, 0x0019) },
384 PCI_VENDOR_ID_CB, 0x0019, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, { 384 { PCI_DEVICE(PCI_VENDOR_ID_CB, 0x001c) },
385 PCI_VENDOR_ID_CB, 0x001c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, { 385 { PCI_DEVICE(PCI_VENDOR_ID_CB, 0x004c) },
386 PCI_VENDOR_ID_CB, 0x004c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, { 386 { PCI_DEVICE(PCI_VENDOR_ID_CB, 0x001a) },
387 PCI_VENDOR_ID_CB, 0x001a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, { 387 { PCI_DEVICE(PCI_VENDOR_ID_CB, 0x001b) },
388 PCI_VENDOR_ID_CB, 0x001b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, { 388 { 0 }
389 0}
390}; 389};
391 390
392MODULE_DEVICE_TABLE(pci, cb_pcidas_pci_table); 391MODULE_DEVICE_TABLE(pci, cb_pcidas_pci_table);