diff options
author | Miles Chen <miles.chen@mediatek.com> | 2023-01-10 11:12:52 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-02-01 08:23:17 +0100 |
commit | 00f23016118781f85d7ffda2dccf9a43de6f1c98 (patch) | |
tree | c0e3da8065ab43027c8c856c01c268eae0294d89 /drivers | |
parent | 2ca345d19cbd694ed9ea086e5b69289c22750a20 (diff) | |
download | linux-stable-00f23016118781f85d7ffda2dccf9a43de6f1c98.tar.gz linux-stable-00f23016118781f85d7ffda2dccf9a43de6f1c98.tar.bz2 linux-stable-00f23016118781f85d7ffda2dccf9a43de6f1c98.zip |
cpufreq: armada-37xx: stop using 0 as NULL pointer
[ Upstream commit 08f0adb193c008de640fde34a2e00a666c01d77c ]
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 <miles.chen@mediatek.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/cpufreq/armada-37xx-cpufreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/armada-37xx-cpufreq.c b/drivers/cpufreq/armada-37xx-cpufreq.c index 2de7fd18f66a..f0be8a43ec49 100644 --- a/drivers/cpufreq/armada-37xx-cpufreq.c +++ b/drivers/cpufreq/armada-37xx-cpufreq.c @@ -443,7 +443,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); |