clk: fix return value check in bcm2835_init_clocks()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Tue, 9 Oct 2012 02:46:00 +0000 (10:46 +0800)
committerMike Turquette <mturquette@linaro.org>
Sat, 10 Nov 2012 00:49:15 +0000 (16:49 -0800)
In case of error, the function clk_register_fixed_rate() returns
ERR_PTR() and never returns NULL. The NULL test in the return value
check should be replaced with IS_ERR().

dpatch engine is used to auto generate this patch.
(https://github.com/weiyj/dpatch)

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>

No differences found