diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-11-27 18:42:36 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-11-27 18:42:36 +0000 |
commit | d59ba20030285079b194b17c0e6cc95ee62d7537 (patch) | |
tree | 392e1f262b7279ccd7453732c74f239ba4291f7c /target/linux | |
parent | 5d6208f34d8fc4676679e68648ba7260c882e08e (diff) | |
download | upstream-d59ba20030285079b194b17c0e6cc95ee62d7537.tar.gz upstream-d59ba20030285079b194b17c0e6cc95ee62d7537.tar.bz2 upstream-d59ba20030285079b194b17c0e6cc95ee62d7537.zip |
do not call clk_put() on the timer clock
We don't support disabling the clock, but this is actually what it would do.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 34394
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/mcs814x/files-3.3/arch/arm/mach-mcs814x/timer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/linux/mcs814x/files-3.3/arch/arm/mach-mcs814x/timer.c b/target/linux/mcs814x/files-3.3/arch/arm/mach-mcs814x/timer.c index 0947fb245f..571f9e888c 100644 --- a/target/linux/mcs814x/files-3.3/arch/arm/mach-mcs814x/timer.c +++ b/target/linux/mcs814x/files-3.3/arch/arm/mach-mcs814x/timer.c @@ -111,7 +111,6 @@ static void __init mcs814x_timer_init(void) panic("unable to get timer0 clock"); clock_rate = clk_get_rate(clk); - clk_put(clk); mcs814x_of_timer_init(); |