projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11f3859
)
[PATCH] PCI: remove pci_find_device from parport_pc.c
author
Jiri Slaby
<jirislaby@gmail.com>
Wed, 10 Aug 2005 00:09:39 +0000
(
02:09
+0200)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Thu, 8 Sep 2005 21:57:25 +0000
(14:57 -0700)
This patch changes pci_find_device to pci_get_device (encapsulated in
for_each_pci_dev).
Signed-off-by: Jiri Slaby <xslaby@fi.muni.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/parport/parport_pc.c
patch
|
blob
|
history
diff --git
a/drivers/parport/parport_pc.c
b/drivers/parport/parport_pc.c
index 97f723179f621d15ed3f9283a8a80446aa4a2cb0..1b938bb9be3cc0a985c8b22d80fbdac97344e33a 100644
(file)
--- a/
drivers/parport/parport_pc.c
+++ b/
drivers/parport/parport_pc.c
@@
-3010,7
+3010,7
@@
static int __init parport_pc_init_superio (int autoirq, int autodma)
struct pci_dev *pdev = NULL;
int ret = 0;
-
while ((pdev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, pdev)) != NULL
) {
+
for_each_pci_dev(pdev
) {
id = pci_match_id(parport_pc_pci_tbl, pdev);
if (id == NULL || id->driver_data >= last_sio)
continue;