diff options
author | Greg Kroah-Hartman | 2008-02-13 18:32:03 +0100 |
---|---|---|
committer | Greg Kroah-Hartman | 2008-04-21 06:46:53 +0200 |
commit | a2b5d877840f29b5fbb5f53b63dfcbf8bc0aea47 (patch) | |
tree | cee85d008cc2f764dac3b6ce0db40796ce0365e2 /arch/x86/kernel | |
parent | PCI: remove pci_find_present (diff) | |
download | kernel-qcow2-linux-a2b5d877840f29b5fbb5f53b63dfcbf8bc0aea47.tar.gz kernel-qcow2-linux-a2b5d877840f29b5fbb5f53b63dfcbf8bc0aea47.tar.xz kernel-qcow2-linux-a2b5d877840f29b5fbb5f53b63dfcbf8bc0aea47.zip |
PCI: remove pci_get_device_reverse from calgary driver
This isn't needed, we can just walk the devices in bus order with no
problems at all, as we really want to remove pci_get_device_reverse from
the kernel tree.
Acked-by: Muli Ben-Yehuda <muli@il.ibm.com>
Cc: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/pci-calgary_64.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/pci-calgary_64.c b/arch/x86/kernel/pci-calgary_64.c index 1b5464c2434f..67a3feb90edb 100644 --- a/arch/x86/kernel/pci-calgary_64.c +++ b/arch/x86/kernel/pci-calgary_64.c @@ -1232,8 +1232,7 @@ static int __init calgary_init(void) error: do { - dev = pci_get_device_reverse(PCI_VENDOR_ID_IBM, - PCI_ANY_ID, dev); + dev = pci_get_device(PCI_VENDOR_ID_IBM, PCI_ANY_ID, dev); if (!dev) break; if (!is_cal_pci_dev(dev->device)) |