diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-11-18 06:21:34 +0100 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-12-22 10:42:53 +0100 |
commit | 00e825c6b99b39f12751ea45d38bb4d900de70f4 (patch) | |
tree | 4b43f04fe9f7190ead964bb109931ebcd8d6600f | |
parent | usb: Fix up sh_mobile usbf clock framework warnings. (diff) | |
download | linux-00e825c6b99b39f12751ea45d38bb4d900de70f4.tar.xz linux-00e825c6b99b39f12751ea45d38bb4d900de70f4.zip |
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>
-rw-r--r-- | arch/sh/kernel/cpu/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/clock.c b/arch/sh/kernel/cpu/clock.c index 717056b3d400..7b17137536d6 100644 --- a/arch/sh/kernel/cpu/clock.c +++ b/arch/sh/kernel/cpu/clock.c @@ -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); |