summaryrefslogtreecommitdiffstats
path: root/arch/avr32/boards/mimc200
diff options
context:
space:
mode:
authorVasiliy Kulikov <segoon@openwall.com>2010-11-26 20:06:12 +0300
committerHans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>2011-01-13 20:40:53 +0100
commit36b471e047a77eaf3ec8e693bd9d8291c4dfd864 (patch)
treeeaedd7ca560587611a34c0ff05503d2a129e956b /arch/avr32/boards/mimc200
parent3c0eee3fe6a3a1c745379547c7e7c904aa64f6d5 (diff)
downloadlinux-36b471e047a77eaf3ec8e693bd9d8291c4dfd864.tar.gz
linux-36b471e047a77eaf3ec8e693bd9d8291c4dfd864.tar.xz
avr32: boards: setup: use IS_ERR() instead of NULL check
clk_get() returns ERR_PTR() on error, not NULL. Signed-off-by: Vasiliy Kulikov <segoon@openwall.com> Acked-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Diffstat (limited to 'arch/avr32/boards/mimc200')
-rw-r--r--arch/avr32/boards/mimc200/setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/avr32/boards/mimc200/setup.c b/arch/avr32/boards/mimc200/setup.c
index 523d8e183bef..c4da5cba2dbf 100644
--- a/arch/avr32/boards/mimc200/setup.c
+++ b/arch/avr32/boards/mimc200/setup.c
@@ -162,7 +162,7 @@ static void __init set_hw_addr(struct platform_device *pdev)
*/
regs = (void __iomem __force *)res->start;
pclk = clk_get(&pdev->dev, "pclk");
- if (!pclk)
+ if (IS_ERR(pclk))
return;
clk_enable(pclk);