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

Commit 56282440 authored by Segher Boessenkool's avatar Segher Boessenkool Committed by Paul Mackerras
Browse files

[POWERPC] Fix a compile warning in powermac/feature.c



...by using the pci_get API instead of the deprecated old stuff.

Signed-off-by: default avatarSegher Boessenkool <segher@kernel.crashing.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 3a77d291
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -826,13 +826,15 @@ core99_ata100_enable(struct device_node *node, long value)

	if (value) {
		if (pci_device_from_OF_node(node, &pbus, &pid) == 0)
			pdev = pci_find_slot(pbus, pid);
			pdev = pci_get_bus_and_slot(pbus, pid);
		if (pdev == NULL)
			return 0;
		rc = pci_enable_device(pdev);
		if (rc == 0)
			pci_set_master(pdev);
		pci_dev_put(pdev);
		if (rc)
			return rc;
		pci_set_master(pdev);
	}
	return 0;
}