diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 11:06:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 11:06:16 -0400 |
commit | e30fdb1e026c2d05f216d2e5a25bfafdfd261ec2 (patch) | |
tree | 0f65410e1d86f29107af8a665e277efd0393451c /drivers/ata/pata_oldpiix.c | |
parent | 5b9b5572c87b460cd91f7722ac233d1873cfb084 (diff) | |
parent | 15a7c3bbe344d75e4891c7d30595899c12ccfaa1 (diff) |
Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev
* 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev:
[libata] pata_artop: kill gcc warning
[PATCH] libata: turn off NCQ if queue depth is adjusted to 1
[PATCH] libata: cosmetic changes to constants
[libata] DocBook minor updates, fixes
[libata] PCI ID table cleanup in various drivers
[libata] Print out Status register, if a BSY-sleep takes too long
[libata] init probe_ent->private_data in a common location
[libata] minor PCI IDE probe fixes and cleanups
[libata] Use new PCI_VDEVICE() macro to dramatically shorten ID lists
[PATCH] Fix reference of uninitialised memory in ata_device_add()
Diffstat (limited to 'drivers/ata/pata_oldpiix.c')
-rw-r--r-- | drivers/ata/pata_oldpiix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ata/pata_oldpiix.c b/drivers/ata/pata_oldpiix.c index 31a285ca88dc..fc947dfecd73 100644 --- a/drivers/ata/pata_oldpiix.c +++ b/drivers/ata/pata_oldpiix.c | |||
@@ -303,7 +303,8 @@ static int oldpiix_init_one (struct pci_dev *pdev, const struct pci_device_id *e | |||
303 | } | 303 | } |
304 | 304 | ||
305 | static const struct pci_device_id oldpiix_pci_tbl[] = { | 305 | static const struct pci_device_id oldpiix_pci_tbl[] = { |
306 | { PCI_DEVICE(0x8086, 0x1230), }, | 306 | { PCI_VDEVICE(INTEL, 0x1230), }, |
307 | |||
307 | { } /* terminate list */ | 308 | { } /* terminate list */ |
308 | }; | 309 | }; |
309 | 310 | ||
@@ -324,7 +325,6 @@ static void __exit oldpiix_exit(void) | |||
324 | pci_unregister_driver(&oldpiix_pci_driver); | 325 | pci_unregister_driver(&oldpiix_pci_driver); |
325 | } | 326 | } |
326 | 327 | ||
327 | |||
328 | module_init(oldpiix_init); | 328 | module_init(oldpiix_init); |
329 | module_exit(oldpiix_exit); | 329 | module_exit(oldpiix_exit); |
330 | 330 | ||