firmware: arm_scmi: Use NULL instead of integer 0 for rate pointer
authorSudeep Holla <sudeep.holla@arm.com>
Fri, 17 Jul 2020 14:04:05 +0000 (15:04 +0100)
committerArnd Bergmann <arnd@arndb.de>
Fri, 17 Jul 2020 14:06:54 +0000 (16:06 +0200)
Kbuild test robot reports the following sparse warning:

drivers/firmware/arm_scmi/clock.c:142:21:
sparse: Using plain integer as NULL pointer

Use NULL pointer instead of integer 0 for rate pointer and fix the
warning.

Link: https://lore.kernel.org/r/20200717140405.17905-1-sudeep.holla@arm.com
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
drivers/firmware/arm_scmi/clock.c

index 6593ce8..75e3988 100644 (file)
@@ -139,7 +139,7 @@ static int
 scmi_clock_describe_rates_get(const struct scmi_handle *handle, u32 clk_id,
                              struct scmi_clock_info *clk)
 {
-       u64 *rate = 0;
+       u64 *rate = NULL;
        int ret, cnt;
        bool rate_discrete = false;
        u32 tot_rate_cnt = 0, rates_flag;