sh: Fix clock framework compiler warnings.

CC      arch/sh/kernel/cpu/clock.o
  arch/sh/kernel/cpu/clock.c: In function 'clk_disable':
  arch/sh/kernel/cpu/clock.c:156: warning: 'return' with a value, in function returning void

Introduced by ("sh: enable and disable clocks recursively").

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
Paul Mundt 2008-11-18 14:21:34 +09:00
parent d6435102d4
commit 00e825c6b9

View File

@ -153,7 +153,7 @@ void clk_disable(struct clk *clk)
unsigned long flags;
if (!clk)
return -EINVAL;
return;
spin_lock_irqsave(&clock_lock, flags);
__clk_disable(clk);