Commit c69af038 authored by Jiri Slaby's avatar Jiri Slaby Committed by Wim Van Sebroeck

[WATCHDOG] removes pci_find_device from i6300esb.c

This patch changes pci_find_device to pci_get_device
(encapsulated in for_each_pci_dev) in i6300esb watchdog
card with appropriate adding pci_dev_put.

Generated in 2.6.13-rc5-mm1 kernel version.
Signed-off-by: default avatarJiri Slaby <xslaby@fi.muni.cz>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent cc90ef0f
...@@ -368,12 +368,11 @@ static unsigned char __init esb_getdevice (void) ...@@ -368,12 +368,11 @@ static unsigned char __init esb_getdevice (void)
* Find the PCI device * Find the PCI device
*/ */
while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) { for_each_pci_dev(dev)
if (pci_match_device(esb_pci_tbl, dev)) { if (pci_match_device(esb_pci_tbl, dev)) {
esb_pci = dev; esb_pci = dev;
break; break;
} }
}
if (esb_pci) { if (esb_pci) {
if (pci_enable_device(esb_pci)) { if (pci_enable_device(esb_pci)) {
...@@ -430,6 +429,7 @@ static unsigned char __init esb_getdevice (void) ...@@ -430,6 +429,7 @@ static unsigned char __init esb_getdevice (void)
pci_release_region(esb_pci, 0); pci_release_region(esb_pci, 0);
err_disable: err_disable:
pci_disable_device(esb_pci); pci_disable_device(esb_pci);
pci_dev_put(esb_pci);
} }
out: out:
return 0; return 0;
...@@ -481,6 +481,7 @@ static int __init watchdog_init (void) ...@@ -481,6 +481,7 @@ static int __init watchdog_init (void)
pci_release_region(esb_pci, 0); pci_release_region(esb_pci, 0);
/* err_disable: */ /* err_disable: */
pci_disable_device(esb_pci); pci_disable_device(esb_pci);
pci_dev_put(esb_pci);
/* out: */ /* out: */
return ret; return ret;
} }
...@@ -497,6 +498,7 @@ static void __exit watchdog_cleanup (void) ...@@ -497,6 +498,7 @@ static void __exit watchdog_cleanup (void)
iounmap(BASEADDR); iounmap(BASEADDR);
pci_release_region(esb_pci, 0); pci_release_region(esb_pci, 0);
pci_disable_device(esb_pci); pci_disable_device(esb_pci);
pci_dev_put(esb_pci);
} }
module_init(watchdog_init); module_init(watchdog_init);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment