Commit 00e825c6 authored by Paul Mundt's avatar Paul Mundt

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: default avatarPaul Mundt <lethal@linux-sh.org>
parent d6435102
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment