diff options
author | Roland Stigge <stigge@antcom.de> | 2012-02-08 21:41:04 +0100 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-02-09 16:00:33 -0800 |
commit | 9862048abfe5fbd134553a8de30cf8767291fb1f (patch) | |
tree | 8b13837db5d7ed9aeaac9e6eb510bd4cc5b0d639 | |
parent | 770e2da2aef92e31cd52ed9a8c20cae0e84e9034 (diff) | |
download | blackbird-obmc-linux-9862048abfe5fbd134553a8de30cf8767291fb1f.tar.gz blackbird-obmc-linux-9862048abfe5fbd134553a8de30cf8767291fb1f.zip |
ARM: LPC32xx: clock.c: warning fix
This patch removes the debug warning on local_clk_disable() as done in Kevin
Wells' driver update
Signed-off-by: Roland Stigge <stigge@antcom.de>
Acked-by: Wolfram Sang <w.sang@pengutronix.de>
Tested-by: Wolfram Sang <w.sang@pengutronix.de>
Acked-by: Kevin Wells <kevin.wells@nxp.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
-rw-r--r-- | arch/arm/mach-lpc32xx/clock.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-lpc32xx/clock.c b/arch/arm/mach-lpc32xx/clock.c index 1e027514096d..39dcbd0e68b2 100644 --- a/arch/arm/mach-lpc32xx/clock.c +++ b/arch/arm/mach-lpc32xx/clock.c @@ -903,8 +903,6 @@ static inline void clk_unlock(void) static void local_clk_disable(struct clk *clk) { - WARN_ON(clk->usecount == 0); - /* Don't attempt to disable clock if it has no users */ if (clk->usecount > 0) { clk->usecount--; |