aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide')
-rw-r--r--drivers/ide/pci/sis5513.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/ide/pci/sis5513.c b/drivers/ide/pci/sis5513.c
index f03196c5db3..92edf76bd7a 100644
--- a/drivers/ide/pci/sis5513.c
+++ b/drivers/ide/pci/sis5513.c
@@ -739,7 +739,7 @@ static unsigned int __devinit init_chipset_sis5513 (struct pci_dev *dev, const c
739 739
740 for (i = 0; i < ARRAY_SIZE(SiSHostChipInfo) && !chipset_family; i++) { 740 for (i = 0; i < ARRAY_SIZE(SiSHostChipInfo) && !chipset_family; i++) {
741 741
742 host = pci_find_device(PCI_VENDOR_ID_SI, SiSHostChipInfo[i].host_id, NULL); 742 host = pci_get_device(PCI_VENDOR_ID_SI, SiSHostChipInfo[i].host_id, NULL);
743 743
744 if (!host) 744 if (!host)
745 continue; 745 continue;
@@ -753,6 +753,7 @@ static unsigned int __devinit init_chipset_sis5513 (struct pci_dev *dev, const c
753 if (hostrev >= 0x30) 753 if (hostrev >= 0x30)
754 chipset_family = ATA_100a; 754 chipset_family = ATA_100a;
755 } 755 }
756 pci_dev_put(host);
756 757
757 printk(KERN_INFO "SIS5513: %s %s controller\n", 758 printk(KERN_INFO "SIS5513: %s %s controller\n",
758 SiSHostChipInfo[i].name, chipset_capability[chipset_family]); 759 SiSHostChipInfo[i].name, chipset_capability[chipset_family]);