aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory CLEMENT <[email protected]>2023-12-15 16:37:06 +0100
committerViresh Kumar <[email protected]>2023-12-18 11:22:57 +0530
commit0990319a0400db1d6069b5549327cd9105a266d5 (patch)
treebd33a7174d63606d414be6203e78122cb4c7ef34
parentc4a5118a3ae1eadc687d84eef9431f9e13eb015c (diff)
cpufreq: armada-8k: Fix parameter type warning
The second parameter of clk_get() is of type 'const char *', so use NULL instead of the integer 0 to resolve a sparse warning: drivers/cpufreq/armada-8k-cpufreq.c:60:40: warning: Using plain integer as NULL pointer drivers/cpufreq/armada-8k-cpufreq.c:168:40: warning: Using plain integer as NULL pointer Reported-by: kernel test robot <[email protected]> Signed-off-by: Gregory CLEMENT <[email protected]> Reviewed-by: Andrew Lunn <[email protected]> Signed-off-by: Viresh Kumar <[email protected]>
-rw-r--r--drivers/cpufreq/armada-8k-cpufreq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/cpufreq/armada-8k-cpufreq.c b/drivers/cpufreq/armada-8k-cpufreq.c
index 8afefdea4d80..ce5a5641b6dd 100644
--- a/drivers/cpufreq/armada-8k-cpufreq.c
+++ b/drivers/cpufreq/armada-8k-cpufreq.c
@@ -57,7 +57,7 @@ static void __init armada_8k_get_sharing_cpus(struct clk *cur_clk,
continue;
}
- clk = clk_get(cpu_dev, 0);
+ clk = clk_get(cpu_dev, NULL);
if (IS_ERR(clk)) {
pr_warn("Cannot get clock for CPU %d\n", cpu);
} else {
@@ -165,7 +165,7 @@ static int __init armada_8k_cpufreq_init(void)
continue;
}
- clk = clk_get(cpu_dev, 0);
+ clk = clk_get(cpu_dev, NULL);
if (IS_ERR(clk)) {
pr_err("Cannot get clock for CPU %d\n", cpu);