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

Commit f3294690 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

x86, numaq: add pci_acpi_scan_root() stub

allow 32-bit numaq build to succeed with ACPI enabled.
parent b28852d6
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -87,3 +87,14 @@ static int __init numaq_tsc_disable(void)
	return 0;
}
arch_initcall(numaq_tsc_disable);

#ifdef CONFIG_ACPI
/*
 * Dummy implementation:
 */
struct pci_bus * __devinit
pci_acpi_scan_root(struct acpi_device *device, int domain, int busnum)
{
	return NULL;
}
#endif