diff options
Diffstat (limited to 'drivers/ata/sata_mv.c')
-rw-r--r-- | drivers/ata/sata_mv.c | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/drivers/ata/sata_mv.c b/drivers/ata/sata_mv.c index c01496df4a99..e6aa1a86d5cf 100644 --- a/drivers/ata/sata_mv.c +++ b/drivers/ata/sata_mv.c | |||
@@ -533,19 +533,20 @@ static const struct ata_port_info mv_port_info[] = { | |||
533 | }; | 533 | }; |
534 | 534 | ||
535 | static const struct pci_device_id mv_pci_tbl[] = { | 535 | static const struct pci_device_id mv_pci_tbl[] = { |
536 | {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5040), 0, 0, chip_504x}, | 536 | { PCI_VDEVICE(MARVELL, 0x5040), chip_504x }, |
537 | {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5041), 0, 0, chip_504x}, | 537 | { PCI_VDEVICE(MARVELL, 0x5041), chip_504x }, |
538 | {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5080), 0, 0, chip_5080}, | 538 | { PCI_VDEVICE(MARVELL, 0x5080), chip_5080 }, |
539 | {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5081), 0, 0, chip_508x}, | 539 | { PCI_VDEVICE(MARVELL, 0x5081), chip_508x }, |
540 | 540 | ||
541 | {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6040), 0, 0, chip_604x}, | 541 | { PCI_VDEVICE(MARVELL, 0x6040), chip_604x }, |
542 | {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6041), 0, 0, chip_604x}, | 542 | { PCI_VDEVICE(MARVELL, 0x6041), chip_604x }, |
543 | {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6042), 0, 0, chip_6042}, | 543 | { PCI_VDEVICE(MARVELL, 0x6042), chip_6042 }, |
544 | {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6080), 0, 0, chip_608x}, | 544 | { PCI_VDEVICE(MARVELL, 0x6080), chip_608x }, |
545 | {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6081), 0, 0, chip_608x}, | 545 | { PCI_VDEVICE(MARVELL, 0x6081), chip_608x }, |
546 | 546 | ||
547 | {PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x0241), 0, 0, chip_604x}, | 547 | { PCI_VDEVICE(ADAPTEC2, 0x0241), chip_604x }, |
548 | {} /* terminate list */ | 548 | |
549 | { } /* terminate list */ | ||
549 | }; | 550 | }; |
550 | 551 | ||
551 | static struct pci_driver mv_pci_driver = { | 552 | static struct pci_driver mv_pci_driver = { |