lkml.org 
[lkml]   [2017]   [Apr]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH 2/5] clk: mvebu: Adjust two checks for null pointers in of_cpu_clk_setup()
From
Date
From: Markus Elfring <elfring@users.sourceforge.net>
Date: Wed, 19 Apr 2017 20:25:59 +0200
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The script “checkpatch.pl” pointed information out like the following.

Comparison to NULL could be written !…

Thus fix the affected source code places.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
drivers/clk/mvebu/clk-cpu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/clk/mvebu/clk-cpu.c b/drivers/clk/mvebu/clk-cpu.c
index 072aa38374ce..8162833d2041 100644
--- a/drivers/clk/mvebu/clk-cpu.c
+++ b/drivers/clk/mvebu/clk-cpu.c
@@ -173,13 +173,13 @@ static void __init of_cpu_clk_setup(struct device_node *node)
int ncpus = 0;
struct device_node *dn;

- if (clock_complex_base == NULL) {
+ if (!clock_complex_base) {
pr_err("%s: clock-complex base register not set\n",
__func__);
return;
}

- if (pmu_dfs_base == NULL)
+ if (!pmu_dfs_base)
pr_warn("%s: pmu-dfs base register not set, dynamic frequency scaling not available\n",
__func__);

--
2.12.2
\
 
 \ /
  Last update: 2017-04-19 21:55    [W:0.058 / U:0.064 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site