Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a2b5d877 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

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: default avatarMuli Ben-Yehuda <muli@il.ibm.com>
Cc: Jon Mason <jdmason@kudzu.us>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 448432c4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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))