Commit 415217ef authored by Max Filippov's avatar Max Filippov Committed by Chris Zankel

xtensa: fix CPU cache flags formatting

Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
Signed-off-by: default avatarChris Zankel <chris@zankel.net>
parent 288dc2b6
...@@ -412,7 +412,7 @@ c_show(struct seq_file *f, void *slot) ...@@ -412,7 +412,7 @@ c_show(struct seq_file *f, void *slot)
"icache size\t: %d\n" "icache size\t: %d\n"
"icache flags\t: " "icache flags\t: "
#if XCHAL_ICACHE_LINE_LOCKABLE #if XCHAL_ICACHE_LINE_LOCKABLE
"lock" "lock "
#endif #endif
"\n" "\n"
"dcache line size: %d\n" "dcache line size: %d\n"
...@@ -420,10 +420,10 @@ c_show(struct seq_file *f, void *slot) ...@@ -420,10 +420,10 @@ c_show(struct seq_file *f, void *slot)
"dcache size\t: %d\n" "dcache size\t: %d\n"
"dcache flags\t: " "dcache flags\t: "
#if XCHAL_DCACHE_IS_WRITEBACK #if XCHAL_DCACHE_IS_WRITEBACK
"writeback" "writeback "
#endif #endif
#if XCHAL_DCACHE_LINE_LOCKABLE #if XCHAL_DCACHE_LINE_LOCKABLE
"lock" "lock "
#endif #endif
"\n", "\n",
XCHAL_ICACHE_LINESIZE, XCHAL_ICACHE_LINESIZE,
......
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