diff options
author | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-10-16 16:29:56 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2007-10-16 16:29:56 -0400 |
commit | 9cbcc5e3c5d2d0355fed22d00762fd764c81a383 (patch) | |
tree | 1e8a0faed232ab34d8b2b423fbfafbbaab339f94 /drivers/ide/pci/hpt34x.c | |
parent | d83fca58d3229f3b23a92a72c3428da8faf09940 (diff) |
ide: use PCI_VDEVICE() macro
While at it:
- make struct pci_device_id tables const
- use PCI_DEVICE_ID_ITE_8213 define in it8213.c
- fix comment in generic.c
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide/pci/hpt34x.c')
-rw-r--r-- | drivers/ide/pci/hpt34x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/pci/hpt34x.c b/drivers/ide/pci/hpt34x.c index 449132583bb4..88472e5a3ec7 100644 --- a/drivers/ide/pci/hpt34x.c +++ b/drivers/ide/pci/hpt34x.c | |||
@@ -176,8 +176,8 @@ static int __devinit hpt34x_init_one(struct pci_dev *dev, const struct pci_devic | |||
176 | return ide_setup_pci_device(dev, d); | 176 | return ide_setup_pci_device(dev, d); |
177 | } | 177 | } |
178 | 178 | ||
179 | static struct pci_device_id hpt34x_pci_tbl[] = { | 179 | static const struct pci_device_id hpt34x_pci_tbl[] = { |
180 | { PCI_VENDOR_ID_TTI, PCI_DEVICE_ID_TTI_HPT343, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 180 | { PCI_VDEVICE(TTI, PCI_DEVICE_ID_TTI_HPT343), 0 }, |
181 | { 0, }, | 181 | { 0, }, |
182 | }; | 182 | }; |
183 | MODULE_DEVICE_TABLE(pci, hpt34x_pci_tbl); | 183 | MODULE_DEVICE_TABLE(pci, hpt34x_pci_tbl); |