Archived
14
0
Fork 0

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

allow CONFIG_ACPI_NUMA builds to succeed on 32-bit.
This commit is contained in:
Ingo Molnar 2008-06-03 10:09:45 +02:00
parent 84d6bd0e27
commit 2772f54bf3

View file

@ -454,3 +454,12 @@ int memory_add_physaddr_to_nid(u64 addr)
EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
#endif
#ifdef CONFIG_ACPI_NUMA
/*
* Dummy on 32-bit, for now:
*/
void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
{
}
#endif