diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2016-10-25 16:45:11 -0400 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2016-10-28 13:09:06 -0400 |
commit | d7c46114e356fe41b7291ebff70d7ca09c0f0ac9 (patch) | |
tree | fffc704e1c2782ae30cf22516f68b30dfd625364 | |
parent | a024fd9bc4d0b102b8aa66b8ecba678d2d32fdcf (diff) |
ARC: boot log: remove awkward space comma from MMU line
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
-rw-r--r-- | arch/arc/mm/tlb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arc/mm/tlb.c b/arch/arc/mm/tlb.c index ec868a9081a1..bdb295e09160 100644 --- a/arch/arc/mm/tlb.c +++ b/arch/arc/mm/tlb.c | |||
@@ -793,16 +793,16 @@ char *arc_mmu_mumbojumbo(int cpu_id, char *buf, int len) | |||
793 | char super_pg[64] = ""; | 793 | char super_pg[64] = ""; |
794 | 794 | ||
795 | if (p_mmu->s_pg_sz_m) | 795 | if (p_mmu->s_pg_sz_m) |
796 | scnprintf(super_pg, 64, "%dM Super Page%s, ", | 796 | scnprintf(super_pg, 64, "%dM Super Page %s", |
797 | p_mmu->s_pg_sz_m, | 797 | p_mmu->s_pg_sz_m, |
798 | IS_USED_CFG(CONFIG_TRANSPARENT_HUGEPAGE)); | 798 | IS_USED_CFG(CONFIG_TRANSPARENT_HUGEPAGE)); |
799 | 799 | ||
800 | n += scnprintf(buf + n, len - n, | 800 | n += scnprintf(buf + n, len - n, |
801 | "MMU [v%x]\t: %dk PAGE, %sJTLB %d (%dx%d), uDTLB %d, uITLB %d %s%s\n", | 801 | "MMU [v%x]\t: %dk PAGE, %sJTLB %d (%dx%d), uDTLB %d, uITLB %d%s%s\n", |
802 | p_mmu->ver, p_mmu->pg_sz_k, super_pg, | 802 | p_mmu->ver, p_mmu->pg_sz_k, super_pg, |
803 | p_mmu->sets * p_mmu->ways, p_mmu->sets, p_mmu->ways, | 803 | p_mmu->sets * p_mmu->ways, p_mmu->sets, p_mmu->ways, |
804 | p_mmu->u_dtlb, p_mmu->u_itlb, | 804 | p_mmu->u_dtlb, p_mmu->u_itlb, |
805 | IS_AVAIL2(p_mmu->pae, "PAE40 ", CONFIG_ARC_HAS_PAE40)); | 805 | IS_AVAIL2(p_mmu->pae, ", PAE40 ", CONFIG_ARC_HAS_PAE40)); |
806 | 806 | ||
807 | return buf; | 807 | return buf; |
808 | } | 808 | } |