diff options
| -rw-r--r-- | arch/x86/kernel/mpparse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/mpparse.c b/arch/x86/kernel/mpparse.c index 66ebb823f390..200764453195 100644 --- a/arch/x86/kernel/mpparse.c +++ b/arch/x86/kernel/mpparse.c | |||
| @@ -692,8 +692,8 @@ static int __init smp_scan_config(unsigned long base, unsigned long length, | |||
| 692 | #endif | 692 | #endif |
| 693 | mpf_found = mpf; | 693 | mpf_found = mpf; |
| 694 | 694 | ||
| 695 | printk(KERN_INFO "found SMP MP-table at [%p] %08lx\n", | 695 | printk(KERN_INFO "found SMP MP-table at [%p] %llx\n", |
| 696 | mpf, virt_to_phys(mpf)); | 696 | mpf, (u64)virt_to_phys(mpf)); |
| 697 | 697 | ||
| 698 | if (!reserve) | 698 | if (!reserve) |
| 699 | return 1; | 699 | return 1; |
| @@ -1011,7 +1011,7 @@ static int __init update_mp_table(void) | |||
| 1011 | if (!smp_check_mpc(mpc, oem, str)) | 1011 | if (!smp_check_mpc(mpc, oem, str)) |
| 1012 | return 0; | 1012 | return 0; |
| 1013 | 1013 | ||
| 1014 | printk(KERN_INFO "mpf: %lx\n", virt_to_phys(mpf)); | 1014 | printk(KERN_INFO "mpf: %llx\n", (u64)virt_to_phys(mpf)); |
| 1015 | printk(KERN_INFO "physptr: %x\n", mpf->physptr); | 1015 | printk(KERN_INFO "physptr: %x\n", mpf->physptr); |
| 1016 | 1016 | ||
| 1017 | if (mpc_new_phys && mpc->length > mpc_new_length) { | 1017 | if (mpc_new_phys && mpc->length > mpc_new_length) { |
