x86: remove debug code from arch_add_memory()

Impact: remove incorrect WARN_ON(1)

Gets rid of dmesg spam created during physical memory hot-add which
will very likely confuse users. The change removes what appears to
be debugging code which I assume was unintentionally included in:

x86: arch/x86/mm/init_64.c printk fixes
commit 10f22dde556d1ed41d55355d1fb8ad495f9810c8

Signed-off-by: Gary Hade <garyhade@us.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by Gary Hade and committed by Ingo Molnar fe8b868e 1d6cf1fe

+1 -1
+1 -1
arch/x86/mm/init_64.c
··· 858 max_pfn_mapped = last_mapped_pfn; 859 860 ret = __add_pages(zone, start_pfn, nr_pages); 861 - WARN_ON(1); 862 863 return ret; 864 }
··· 858 max_pfn_mapped = last_mapped_pfn; 859 860 ret = __add_pages(zone, start_pfn, nr_pages); 861 + WARN_ON_ONCE(ret); 862 863 return ret; 864 }