Commit 81b61fa7 authored by Balbir Singh's avatar Balbir Singh Committed by Michael Ellerman

powerpc/mce: Align the print of physical address better

Use the same alignment as Effective address.
Signed-off-by: default avatarBalbir Singh <bsingharora@gmail.com>
Reviewed-by: default avatarNicholas Piggin <npiggin@gmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 73e341eb
...@@ -340,7 +340,7 @@ void machine_check_print_event_info(struct machine_check_event *evt, ...@@ -340,7 +340,7 @@ void machine_check_print_event_info(struct machine_check_event *evt,
printk("%s Effective address: %016llx\n", printk("%s Effective address: %016llx\n",
level, evt->u.ue_error.effective_address); level, evt->u.ue_error.effective_address);
if (evt->u.ue_error.physical_address_provided) if (evt->u.ue_error.physical_address_provided)
printk("%s Physical address: %016llx\n", printk("%s Physical address: %016llx\n",
level, evt->u.ue_error.physical_address); level, evt->u.ue_error.physical_address);
break; break;
case MCE_ERROR_TYPE_SLB: case MCE_ERROR_TYPE_SLB:
......
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