mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-11 15:49:56 +00:00
[PATCH] sis5513: Switch to pci refcounting
Mirrors the drivers/ata version, hold a reference to the host bridge while we are doing setup. Signed-off-by: Alan Cox <alan@redhat.com> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
970a61363b
commit
40cddf2cbd
@ -739,7 +739,7 @@ static unsigned int __devinit init_chipset_sis5513 (struct pci_dev *dev, const c
|
|||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(SiSHostChipInfo) && !chipset_family; i++) {
|
for (i = 0; i < ARRAY_SIZE(SiSHostChipInfo) && !chipset_family; i++) {
|
||||||
|
|
||||||
host = pci_find_device(PCI_VENDOR_ID_SI, SiSHostChipInfo[i].host_id, NULL);
|
host = pci_get_device(PCI_VENDOR_ID_SI, SiSHostChipInfo[i].host_id, NULL);
|
||||||
|
|
||||||
if (!host)
|
if (!host)
|
||||||
continue;
|
continue;
|
||||||
@ -753,6 +753,7 @@ static unsigned int __devinit init_chipset_sis5513 (struct pci_dev *dev, const c
|
|||||||
if (hostrev >= 0x30)
|
if (hostrev >= 0x30)
|
||||||
chipset_family = ATA_100a;
|
chipset_family = ATA_100a;
|
||||||
}
|
}
|
||||||
|
pci_dev_put(host);
|
||||||
|
|
||||||
printk(KERN_INFO "SIS5513: %s %s controller\n",
|
printk(KERN_INFO "SIS5513: %s %s controller\n",
|
||||||
SiSHostChipInfo[i].name, chipset_capability[chipset_family]);
|
SiSHostChipInfo[i].name, chipset_capability[chipset_family]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user