]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
MIPS: ath79: Fix error handling
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Sun, 30 Oct 2016 08:25:46 +0000 (09:25 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 3 Jan 2017 15:34:39 +0000 (16:34 +0100)
'clk_register_fixed_rate()' 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>
Acked-by: Aban Bedel <albeu@free.fr>
Cc: antonynpavlov@gmail.com
Cc: hackpascal@gmail.com
Cc: amitoj1606@gmail.com
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Cc: kernel-janitors@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/14464/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/ath79/clock.c

index cc3a1e33a600ec7a8dd6f73ca12354955065d44d..c1102cffe37d4747ac76fe167d80363716b89d33 100644 (file)
@@ -45,7 +45,7 @@ static struct clk *__init ath79_add_sys_clkdev(
        int err;
 
        clk = clk_register_fixed_rate(NULL, id, NULL, 0, rate);
-       if (!clk)
+       if (IS_ERR(clk))
                panic("failed to allocate %s clock structure", id);
 
        err = clk_register_clkdev(clk, id, NULL);