]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
powerpc/64s: Fix misleading SPR and timebase information
authorShaokun Zhang <zhangshaokun@hisilicon.com>
Wed, 29 May 2019 09:21:51 +0000 (17:21 +0800)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 19 Jun 2019 10:05:08 +0000 (20:05 +1000)
pr_info shows SPR and timebase as a decimal value with a '0x'
prefix, which is somewhat misleading.

Fix it to print hexadecimal, as was intended.

Fixes: 10d91611f426 ("powerpc/64s: Reimplement book3s idle code in C")
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Shaokun Zhang <zhangshaokun@hisilicon.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/platforms/powernv/idle.c

index c9133f7908ca167181132a6d3d1ec03dbadc2ea0..77f2e0a4ee3723bfa55060867adfe23a3ef6a95b 100644 (file)
@@ -1159,10 +1159,10 @@ static void __init pnv_power9_idle_init(void)
                        pnv_deepest_stop_psscr_mask);
        }
 
-       pr_info("cpuidle-powernv: First stop level that may lose SPRs = 0x%lld\n",
+       pr_info("cpuidle-powernv: First stop level that may lose SPRs = 0x%llx\n",
                pnv_first_spr_loss_level);
 
-       pr_info("cpuidle-powernv: First stop level that may lose timebase = 0x%lld\n",
+       pr_info("cpuidle-powernv: First stop level that may lose timebase = 0x%llx\n",
                pnv_first_tb_loss_level);
 }