Linux ATA/IDE development
 help / color / mirror / Atom feed
* [PATCH] sis5513: Switch to pci refcounting
@ 2006-09-15 14:18 Alan Cox
  0 siblings, 0 replies; only message in thread
From: Alan Cox @ 2006-09-15 14:18 UTC (permalink / raw)
  To: akpm, linux-kernel, linux-ide

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>

diff -u --new-file --recursive --exclude-from /usr/src/exclude linux.vanilla-2.6.18-rc6-mm1/drivers/ide/pci/sis5513.c linux-2.6.18-rc6-mm1/drivers/ide/pci/sis5513.c
--- linux.vanilla-2.6.18-rc6-mm1/drivers/ide/pci/sis5513.c	2006-09-11 17:00:09.000000000 +0100
+++ linux-2.6.18-rc6-mm1/drivers/ide/pci/sis5513.c	2006-09-14 17:19:58.000000000 +0100
@@ -739,7 +739,7 @@
 
 	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)
 			continue;
@@ -753,6 +753,7 @@
 			if (hostrev >= 0x30)
 				chipset_family = ATA_100a;
 		}
+		pci_dev_put(host);
 	
 		printk(KERN_INFO "SIS5513: %s %s controller\n",
 			 SiSHostChipInfo[i].name, chipset_capability[chipset_family]);


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-09-15 13:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-15 14:18 [PATCH] sis5513: Switch to pci refcounting Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox