diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-06-03 10:09:45 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-06-03 10:23:48 +0200 |
commit | 2772f54bf37b033263abe4a2314c40a308a1a5cd (patch) | |
tree | 12e92cfa83dddc120824425c48de9efb335b8525 | |
parent | 84d6bd0e272e6eace1e7e4c501f32bddfb665bb2 (diff) |
x86: add acpi_numa_slit_init() dummy implementation on 32-bit
allow CONFIG_ACPI_NUMA builds to succeed on 32-bit.
-rw-r--r-- | arch/x86/mm/discontig_32.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86/mm/discontig_32.c b/arch/x86/mm/discontig_32.c index 435c343c14b..d28987a2f2b 100644 --- a/arch/x86/mm/discontig_32.c +++ b/arch/x86/mm/discontig_32.c @@ -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 |