diff options
Diffstat (limited to 'arch/xtensa/kernel/setup.c')
-rw-r--r-- | arch/xtensa/kernel/setup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/xtensa/kernel/setup.c b/arch/xtensa/kernel/setup.c index 101012bc1ff6..946fb8d06c8b 100644 --- a/arch/xtensa/kernel/setup.c +++ b/arch/xtensa/kernel/setup.c | |||
@@ -584,8 +584,8 @@ c_show(struct seq_file *f, void *slot) | |||
584 | "bogomips\t: %lu.%02lu\n", | 584 | "bogomips\t: %lu.%02lu\n", |
585 | XCHAL_BUILD_UNIQUE_ID, | 585 | XCHAL_BUILD_UNIQUE_ID, |
586 | XCHAL_HAVE_BE ? "big" : "little", | 586 | XCHAL_HAVE_BE ? "big" : "little", |
587 | CCOUNT_PER_JIFFY/(1000000/HZ), | 587 | ccount_freq/1000000, |
588 | (CCOUNT_PER_JIFFY/(10000/HZ)) % 100, | 588 | (ccount_freq/10000) % 100, |
589 | loops_per_jiffy/(500000/HZ), | 589 | loops_per_jiffy/(500000/HZ), |
590 | (loops_per_jiffy/(5000/HZ)) % 100); | 590 | (loops_per_jiffy/(5000/HZ)) % 100); |
591 | 591 | ||