From: Miles Chen Date: Tue, 10 Jan 2023 03:12:52 +0000 (+0800) Subject: cpufreq: armada-37xx: stop using 0 as NULL pointer X-Git-Tag: v6.2-rc4~19^2~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08f0adb193c008de640fde34a2e00a666c01d77c;p=thirdparty%2Fkernel%2Flinux.git cpufreq: armada-37xx: stop using 0 as NULL pointer Use NULL for NULL pointer to fix the following sparse warning: drivers/cpufreq/armada-37xx-cpufreq.c:448:32: sparse: warning: Using plain integer as NULL pointer Signed-off-by: Miles Chen Signed-off-by: Viresh Kumar --- diff --git a/drivers/cpufreq/armada-37xx-cpufreq.c b/drivers/cpufreq/armada-37xx-cpufreq.c index c10fc33b29b18..b74289a95a171 100644 --- a/drivers/cpufreq/armada-37xx-cpufreq.c +++ b/drivers/cpufreq/armada-37xx-cpufreq.c @@ -445,7 +445,7 @@ static int __init armada37xx_cpufreq_driver_init(void) return -ENODEV; } - clk = clk_get(cpu_dev, 0); + clk = clk_get(cpu_dev, NULL); if (IS_ERR(clk)) { dev_err(cpu_dev, "Cannot get clock for CPU0\n"); return PTR_ERR(clk);