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

Commit b5d99e64 authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt Committed by Paul Mackerras
Browse files

[POWERPC] Fix warning in powermac pci.c



This fixes a warning due to unused result from pci_enable_device() in
powermac pci.c

Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent e71c5c38
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1191,8 +1191,11 @@ void __init pmac_pcibios_after_init(void)
	 * -- BenH
	 */
	for_each_pci_dev(dev) {
		if ((dev->class >> 16) == PCI_BASE_CLASS_STORAGE)
			pci_enable_device(dev);
		if ((dev->class >> 16) != PCI_BASE_CLASS_STORAGE)
			continue;
		if (pci_enable_device(dev))
			printk(KERN_WARNING
			       "pci: Failed to enable %s\n", pci_name(dev));
	}
#endif /* CONFIG_BLK_DEV_IDE */