forked from Minki/linux
ARM: spear: Fix error handling
'clk_get_sys()' returns an error pointer in case of error, not NULL. So test it with IS_ERR. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
a909d3e636
commit
ce34096152
@ -233,7 +233,7 @@ void __init spear_setup_of_timer(void)
|
||||
}
|
||||
|
||||
gpt_clk = clk_get_sys("gpt0", NULL);
|
||||
if (!gpt_clk) {
|
||||
if (IS_ERR(gpt_clk)) {
|
||||
pr_err("%s:couldn't get clk for gpt\n", __func__);
|
||||
goto err_iomap;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user