Commit c4e46fa3 authored by Andi Kleen's avatar Andi Kleen Committed by Linus Torvalds

[PATCH] x86_64: Eliminate some useless printks in ACPI numa.c

Eliminate some useless printks in ACPI numa.c

They trigger all the time on x86-64 with CONFIG_ACPI_NUMA
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 1e9b712b
......@@ -184,17 +184,10 @@ acpi_numa_init()
result = acpi_table_parse_srat(ACPI_SRAT_MEMORY_AFFINITY,
acpi_parse_memory_affinity,
NR_NODE_MEMBLKS); // IA64 specific
} else {
/* FIXME */
printk("Warning: acpi_table_parse(ACPI_SRAT) returned %d!\n",result);
}
/* SLIT: System Locality Information Table */
result = acpi_table_parse(ACPI_SLIT, acpi_parse_slit);
if (result < 1) {
/* FIXME */
printk("Warning: acpi_table_parse(ACPI_SLIT) returned %d!\n",result);
}
acpi_numa_arch_fixup();
return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment