summaryrefslogtreecommitdiff
path: root/arch/arm/mach-shmobile
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2010-05-31 14:25:57 +0900
committerPaul Mundt <lethal@linux-sh.org>2010-05-31 14:25:57 +0900
commit2ae2b766357f62630895045c302c87d0727dbd1d (patch)
tree74461c485518014f209166fcbb955b45aba6248a /arch/arm/mach-shmobile
parent8d3e17bab9b3da44a9ebacb03f378353f06e6f83 (diff)
ARM: mach-shmobile: Fix up ap4evb build warnings.
The FSI changes introduced IS_ERR_VALUE() checks for error conditions, despite clk_get() handing back a pointer. Switch these over to IS_ERR() like the rest of the code. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/arm/mach-shmobile')
-rw-r--r--arch/arm/mach-shmobile/board-ap4evb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-shmobile/board-ap4evb.c b/arch/arm/mach-shmobile/board-ap4evb.c
index 81618ba598e9..bdc4c6bd3108 100644
--- a/arch/arm/mach-shmobile/board-ap4evb.c
+++ b/arch/arm/mach-shmobile/board-ap4evb.c
@@ -745,14 +745,14 @@ static void __init ap4evb_init(void)
/* set SPU2 clock to 119.6 MHz */
clk = clk_get(NULL, "spu_clk");
- if (!IS_ERR_VALUE(clk)) {
+ if (!IS_ERR(clk)) {
clk_set_rate(clk, clk_round_rate(clk, 119600000));
clk_put(clk);
}
/* change parent of FSI A */
clk = clk_get(NULL, "fsia_clk");
- if (!IS_ERR_VALUE(clk)) {
+ if (!IS_ERR(clk)) {
clk_register(&fsiackcr_clk);
clk_set_parent(clk, &fsiackcr_clk);
clk_put(clk);