From 2ae2b766357f62630895045c302c87d0727dbd1d Mon Sep 17 00:00:00 2001 From: Paul Mundt Date: Mon, 31 May 2010 14:25:57 +0900 Subject: [PATCH] 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 --- arch/arm/mach-shmobile/board-ap4evb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-shmobile/board-ap4evb.c b/arch/arm/mach-shmobile/board-ap4evb.c index 81618ba598e..bdc4c6bd310 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);