Commit 27276ba2 authored by Mike Frysinger's avatar Mike Frysinger Committed by Bryan Wu

Blackfin arch: remove spurious dash when dcache is off

Signed-off-by: default avatarMike Frysinger <vapier.adi@gmail.com>
Signed-off-by: default avatarBryan Wu <cooloney@kernel.org>
parent 8e2a7694
...@@ -1145,12 +1145,12 @@ static int show_cpuinfo(struct seq_file *m, void *v) ...@@ -1145,12 +1145,12 @@ static int show_cpuinfo(struct seq_file *m, void *v)
icache_size = 0; icache_size = 0;
seq_printf(m, "cache size\t: %d KB(L1 icache) " seq_printf(m, "cache size\t: %d KB(L1 icache) "
"%d KB(L1 dcache-%s) %d KB(L2 cache)\n", "%d KB(L1 dcache%s) %d KB(L2 cache)\n",
icache_size, dcache_size, icache_size, dcache_size,
#if defined CONFIG_BFIN_WB #if defined CONFIG_BFIN_WB
"wb" "-wb"
#elif defined CONFIG_BFIN_WT #elif defined CONFIG_BFIN_WT
"wt" "-wt"
#endif #endif
"", 0); "", 0);
......
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