Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kernel
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bryan O'Donoghue
Kernel
Commits
d7c46114
Commit
d7c46114
authored
8 years ago
by
Vineet Gupta
Browse files
Options
Downloads
Patches
Plain Diff
ARC: boot log: remove awkward space comma from MMU line
Signed-off-by:
Vineet Gupta
<
vgupta@synopsys.com
>
parent
a024fd9b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/arc/mm/tlb.c
+3
-3
3 additions, 3 deletions
arch/arc/mm/tlb.c
with
3 additions
and
3 deletions
arch/arc/mm/tlb.c
+
3
−
3
View file @
d7c46114
...
...
@@ -793,16 +793,16 @@ char *arc_mmu_mumbojumbo(int cpu_id, char *buf, int len)
char
super_pg
[
64
]
=
""
;
if
(
p_mmu
->
s_pg_sz_m
)
scnprintf
(
super_pg
,
64
,
"%dM Super Page%s
,
"
,
scnprintf
(
super_pg
,
64
,
"%dM Super Page
%s"
,
p_mmu
->
s_pg_sz_m
,
IS_USED_CFG
(
CONFIG_TRANSPARENT_HUGEPAGE
));
n
+=
scnprintf
(
buf
+
n
,
len
-
n
,
"MMU [v%x]
\t
: %dk PAGE, %sJTLB %d (%dx%d), uDTLB %d, uITLB %d
%s%s
\n
"
,
"MMU [v%x]
\t
: %dk PAGE, %sJTLB %d (%dx%d), uDTLB %d, uITLB %d%s%s
\n
"
,
p_mmu
->
ver
,
p_mmu
->
pg_sz_k
,
super_pg
,
p_mmu
->
sets
*
p_mmu
->
ways
,
p_mmu
->
sets
,
p_mmu
->
ways
,
p_mmu
->
u_dtlb
,
p_mmu
->
u_itlb
,
IS_AVAIL2
(
p_mmu
->
pae
,
"PAE40 "
,
CONFIG_ARC_HAS_PAE40
));
IS_AVAIL2
(
p_mmu
->
pae
,
"
,
PAE40 "
,
CONFIG_ARC_HAS_PAE40
));
return
buf
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment