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)
commit0de9f23a2859a4aec5db210887c7457e0c24b9ca
treee853f255bc04dac6b7ea8ab03c0e2d026a3c7fbb
parent78e30d12168b540d426e4584b3d485e80fbc2a51
clk: fix return value check in bcm2835_init_clocks()

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>
drivers/clk/clk-bcm2835.c