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

Commit 2772f54b authored by Ingo Molnar's avatar Ingo Molnar
Browse files

x86: add acpi_numa_slit_init() dummy implementation on 32-bit

allow CONFIG_ACPI_NUMA builds to succeed on 32-bit.
parent 84d6bd0e
Loading
Loading
Loading
Loading
+9 −0
Original line number Original line Diff line number Diff line
@@ -454,3 +454,12 @@ int memory_add_physaddr_to_nid(u64 addr)


EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
#endif
#endif

#ifdef CONFIG_ACPI_NUMA
/*
 * Dummy on 32-bit, for now:
 */
void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
{
}
#endif