Revision 90c5ffe592ff3b33afe2bdfe5e9ec630fc599e32 authored by Vitaly Kuzmichev on 07 July 2011, 13:56:05 UTC, committed by Russell King on 07 July 2011, 14:00:12 UTC
To get hundredths of MHz the rate needs to be divided by 10'000.
Here is an example:
 twd_timer_rate = 123456789
 Before the patch:
    twd_timer_rate / 1000000 = 123
    (twd_timer_rate / 1000000) % 100 = 23
    Result: 123.23MHz.
 After being fixed:
    twd_timer_rate / 1000000 = 123
    (twd_timer_rate / 10000) % 100 = 45
    Result: 123.45MHz.

Signed-off-by: Vitaly Kuzmichev <vkuzmichev@mvista.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
1 parent 38a8914
History
File Mode Size
Kconfig -rw-r--r-- 44.0 KB
Makefile -rw-r--r-- 1.0 KB
calibrate.c -rw-r--r-- 7.5 KB
do_mounts.c -rw-r--r-- 10.9 KB
do_mounts.h -rw-r--r-- 1.4 KB
do_mounts_initrd.c -rw-r--r-- 3.1 KB
do_mounts_md.c -rw-r--r-- 7.9 KB
do_mounts_rd.c -rw-r--r-- 8.1 KB
initramfs.c -rw-r--r-- 12.6 KB
main.c -rw-r--r-- 20.0 KB
noinitramfs.c -rw-r--r-- 1.5 KB
version.c -rw-r--r-- 1.1 KB

back to top