From c87ee1dae358087df649e2144a600f710ca5b19b Mon Sep 17 00:00:00 2001 From: "John A. Williams" Date: Tue, 24 May 2011 18:59:45 +1000 Subject: [PATCH] --- yaml --- r: 260731 b: refs/heads/master c: 95ce618f85a86a7383c1a3e39278be3de84b1b99 h: refs/heads/master i: 260729: 685c4788c506fb0562ed3d5e5a5698504e6d416a 260727: a62cf77fef6f01682ebe6c62c3825f80a213721b v: v3 --- [refs] | 2 +- trunk/arch/microblaze/kernel/cpu/mb.c | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index 31026b4f9c1d..987af7d2df5a 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 8904976e8ca45be3ec75acc71f5d855ef671a079 +refs/heads/master: 95ce618f85a86a7383c1a3e39278be3de84b1b99 diff --git a/trunk/arch/microblaze/kernel/cpu/mb.c b/trunk/arch/microblaze/kernel/cpu/mb.c index 0afebaebb5b5..7b5dca7ed39d 100644 --- a/trunk/arch/microblaze/kernel/cpu/mb.c +++ b/trunk/arch/microblaze/kernel/cpu/mb.c @@ -114,10 +114,11 @@ static int show_cpuinfo(struct seq_file *m, void *v) "Dcache:\t\t%ukB\tline length:\t%dB\n", cpuinfo.dcache_size >> 10, cpuinfo.dcache_line_length); + seq_printf(m, "Dcache-Policy:\t"); if (cpuinfo.dcache_wb) - count += seq_printf(m, "\t\twrite-back\n"); + count += seq_printf(m, "write-back\n"); else - count += seq_printf(m, "\t\twrite-through\n"); + count += seq_printf(m, "write-through\n"); } else count += seq_printf(m, "Dcache:\t\tno\n");