From: Colin Ian King Date: Thu, 23 Jun 2022 18:00:54 +0000 (+0100) Subject: PM / devfreq: imx-bus: use NULL to pass a null pointer rather than zero X-Git-Tag: for-5.20/block-2022-08-04~143^2^2^2~1 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=2472934e36b51bbdf0a7cdd5e351910d9002c6ac;p=linux-2.6-block.git PM / devfreq: imx-bus: use NULL to pass a null pointer rather than zero The 3rd argument to the function of_get_property is a pointer and it is being passed using 0. Use NULL instead. Cleans up sparse warning: warning: Using plain integer as NULL pointer Signed-off-by: Colin Ian King Signed-off-by: Chanwoo Choi --- diff --git a/drivers/devfreq/imx-bus.c b/drivers/devfreq/imx-bus.c index f3f6e25053ed..f87067fc574d 100644 --- a/drivers/devfreq/imx-bus.c +++ b/drivers/devfreq/imx-bus.c @@ -59,7 +59,7 @@ static int imx_bus_init_icc(struct device *dev) struct imx_bus *priv = dev_get_drvdata(dev); const char *icc_driver_name; - if (!of_get_property(dev->of_node, "#interconnect-cells", 0)) + if (!of_get_property(dev->of_node, "#interconnect-cells", NULL)) return 0; if (!IS_ENABLED(CONFIG_INTERCONNECT_IMX)) { dev_warn(dev, "imx interconnect drivers disabled\n");