diff options
author | Michal Simek <monstr@monstr.eu> | 2009-04-21 08:04:39 -0400 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2009-04-23 10:09:18 -0400 |
commit | 79533fd4cb7c261694d3b7d5bdde78836bc35b49 (patch) | |
tree | 1eaccd19c9841cabdab13e80e42a2c13a617f19a /arch/microblaze/kernel | |
parent | 6e60c14810d8da792e418fdcb2110b4185d1b9a2 (diff) |
microblaze: Fix USR1/2 pvr printing message
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/kernel')
-rw-r--r-- | arch/microblaze/kernel/cpu/mb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/cpu/mb.c b/arch/microblaze/kernel/cpu/mb.c index 3b6212bdc8dc..4dcfccdbc364 100644 --- a/arch/microblaze/kernel/cpu/mb.c +++ b/arch/microblaze/kernel/cpu/mb.c | |||
@@ -115,8 +115,8 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
115 | cpuinfo.hw_debug ? "yes" : "no"); | 115 | cpuinfo.hw_debug ? "yes" : "no"); |
116 | 116 | ||
117 | count += seq_printf(m, | 117 | count += seq_printf(m, |
118 | "PVR-USR1:\t%x\n" | 118 | "PVR-USR1:\t%02x\n" |
119 | "PVR-USR2:\t%x\n", | 119 | "PVR-USR2:\t%08x\n", |
120 | cpuinfo.pvr_user1, | 120 | cpuinfo.pvr_user1, |
121 | cpuinfo.pvr_user2); | 121 | cpuinfo.pvr_user2); |
122 | 122 | ||