2004-10-08 22:36:28

by Hanna Linder

[permalink] [raw]
Subject: [RFT 2.6] isa.c replace pci_find_device with pci_get_device

As pci_find_device is going away I've replaced it with pci_get_device.
If someone with a Sparc64 system could test it I would appreciate it.
Thanks.

Hanna Linder
IBM Linux Technology Center

Signed-off-by: Hanna Linder <[email protected]>

---
diff -Nrup linux-2.6.9-rc3-mm3cln/arch/sparc64/kernel/isa.c linux-2.6.9-rc3-mm3patch/arch/sparc64/kernel/isa.c
--- linux-2.6.9-rc3-mm3cln/arch/sparc64/kernel/isa.c 2004-09-29 20:04:25.000000000 -0700
+++ linux-2.6.9-rc3-mm3patch/arch/sparc64/kernel/isa.c 2004-10-08 15:22:19.000000000 -0700
@@ -262,7 +262,7 @@ void __init isa_init(void)
device = PCI_DEVICE_ID_AL_M1533;

pdev = NULL;
- while ((pdev = pci_find_device(vendor, device, pdev)) != NULL) {
+ while ((pdev = pci_get_device(vendor, device, pdev)) != NULL) {
struct pcidev_cookie *pdev_cookie;
struct pci_pbm_info *pbm;
struct sparc_isa_bridge *isa_br;


2004-10-09 17:16:28

by Scott Feldman

[permalink] [raw]
Subject: Re: [KJ] [RFT 2.6] isa.c replace pci_find_device with pci_get_device

On Fri, 2004-10-08 at 15:36, Hanna Linder wrote:
> @@ -262,7 +262,7 @@ void __init isa_init(void)
> device = PCI_DEVICE_ID_AL_M1533;
>
> pdev = NULL;
> - while ((pdev = pci_find_device(vendor, device, pdev)) != NULL) {
> + while ((pdev = pci_get_device(vendor, device, pdev)) != NULL) {
> struct pcidev_cookie *pdev_cookie;
> struct pci_pbm_info *pbm;
> struct sparc_isa_bridge *isa_br;

for_each_pci_dev?

-scott