diff options
Diffstat (limited to 'arch/sh/kernel/setup.c')
-rw-r--r-- | arch/sh/kernel/setup.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 4e278467f76c..82c0a0c1df0d 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
@@ -52,6 +52,7 @@ struct sh_cpuinfo cpu_data[NR_CPUS] __read_mostly = { | |||
52 | .type = CPU_SH_NONE, | 52 | .type = CPU_SH_NONE, |
53 | .family = CPU_FAMILY_UNKNOWN, | 53 | .family = CPU_FAMILY_UNKNOWN, |
54 | .loops_per_jiffy = 10000000, | 54 | .loops_per_jiffy = 10000000, |
55 | .phys_bits = MAX_PHYSMEM_BITS, | ||
55 | }, | 56 | }, |
56 | }; | 57 | }; |
57 | EXPORT_SYMBOL(cpu_data); | 58 | EXPORT_SYMBOL(cpu_data); |
@@ -432,6 +433,8 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
432 | if (c->flags & CPU_HAS_L2_CACHE) | 433 | if (c->flags & CPU_HAS_L2_CACHE) |
433 | show_cacheinfo(m, "scache", c->scache); | 434 | show_cacheinfo(m, "scache", c->scache); |
434 | 435 | ||
436 | seq_printf(m, "address sizes\t: %u bits physical\n", c->phys_bits); | ||
437 | |||
435 | seq_printf(m, "bogomips\t: %lu.%02lu\n", | 438 | seq_printf(m, "bogomips\t: %lu.%02lu\n", |
436 | c->loops_per_jiffy/(500000/HZ), | 439 | c->loops_per_jiffy/(500000/HZ), |
437 | (c->loops_per_jiffy/(5000/HZ)) % 100); | 440 | (c->loops_per_jiffy/(5000/HZ)) % 100); |