diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-05-12 16:07:40 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-12 16:07:40 +0900 |
commit | f3f8290cb3fa4aa627321530bb85d5f35e487433 (patch) | |
tree | f7ceae8076ff77ae69622495c3ab081ff1f8e363 /arch | |
parent | 0dae89572cbcd5f676ea52a9448d9639d97a53d6 (diff) | |
download | kernel-crypto-f3f8290cb3fa4aa627321530bb85d5f35e487433.tar.gz kernel-crypto-f3f8290cb3fa4aa627321530bb85d5f35e487433.tar.xz kernel-crypto-f3f8290cb3fa4aa627321530bb85d5f35e487433.zip |
sh: clkfwk: Handle clk_get_sys() returning an ERR_PTR.
clk_get() needs to also perform an IS_ERR() check to see whether
clk_get_sys() failed or not.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-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 34707b86776..9e1fc133a47 100644 --- a/arch/sh/kernel/cpu/clock.c +++ b/arch/sh/kernel/cpu/clock.c @@ -399,7 +399,7 @@ struct clk *clk_get(struct device *dev, const char *id) int idno; clk = clk_get_sys(dev_id, id); - if (clk) + if (clk && !IS_ERR(clk)) return clk; if (dev == NULL || dev->bus != &platform_bus_type) |