diff options
author | Andi Kleen <ak@suse.de> | 2006-09-26 08:52:37 (GMT) |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2006-09-26 08:52:37 (GMT) |
commit | d3cf7f061521c78ad62e275eb6fbdc8f43fc75a7 (patch) | |
tree | 85bfaaa0338e5b52ce2b1be62306a6abe3426b17 | |
parent | 151f8cc1169f9052095b2be36183ab132d75c6c2 (diff) | |
download | linux-fsl-qoriq-d3cf7f061521c78ad62e275eb6fbdc8f43fc75a7.tar.xz |
[PATCH] Remove bogus warning from early_ioremap
It is correct for its only caller right now, but not for possible
future others.
Signed-off-by: Andi Kleen <ak@suse.de>
-rw-r--r-- | arch/x86_64/mm/init.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86_64/mm/init.c b/arch/x86_64/mm/init.c index 984155b..53b49c8 100644 --- a/arch/x86_64/mm/init.c +++ b/arch/x86_64/mm/init.c @@ -229,7 +229,6 @@ __init void *early_ioremap(unsigned long addr, unsigned long size) /* actually usually some more */ if (size >= LARGE_PAGE_SIZE) { - printk("SMBIOS area too long %lu\n", size); return NULL; } set_pmd(temp_mappings[0].pmd, __pmd(map | _KERNPG_TABLE | _PAGE_PSE)); |