]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
clk: renesas: Use IS_ERR() for pointers that cannot be NULL
authorGeert Uytterhoeven <geert+renesas@glider.be>
Thu, 25 Sep 2025 09:53:24 +0000 (11:53 +0200)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Tue, 14 Oct 2025 08:50:09 +0000 (10:50 +0200)
commit6a636d203cc8d29ae73116bbca8b0ea2c7a90d7f
tree3a2bc23a8658ee08c89824e114b31a1a14d676fc
parent06e6ea35e9886cf2f5997d3a27d49351511af18e
clk: renesas: Use IS_ERR() for pointers that cannot be NULL

The use of IS_ERR_OR_NULL() suggests that "clk" can be a NULL pointer.
Hence smatch assumes so, and issues a "passing zero to 'PTR_ERR'"
warning.

At these checkpoints, "clk" always contains either a valid pointer, or
an error pointer (none of the functions called return NULL pointers).
Hence replace IS_ERR_OR_NULL() by IS_ERR().

Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/r/202408032025.ve2JMaoV-lkp@intel.com/
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Link: https://patch.msgid.link/81260328acb5c78e915ab04afad3901a31c16128.1758793709.git.geert+renesas@glider.be
drivers/clk/renesas/renesas-cpg-mssr.c
drivers/clk/renesas/rzg2l-cpg.c
drivers/clk/renesas/rzv2h-cpg.c