[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <3ad9c41575c274137001916c896bf2b6@208suo.com>
Date: Thu, 20 Jul 2023 16:42:38 +0800
From: sunran001@...suo.com
To: nm@...com, kristo@...nel.org, ssantosh@...nel.org,
mturquette@...libre.com, sboyd@...nel.org
Cc: linux-kernel@...r.kernel.org, linux-clk@...r.kernel.org
Subject: [PATCH] clk: keystone: sci-clk: fix application of sizeof to pointer
The coccinelle check report:
./drivers/scsi/csiostor/csio_mb.c:1554:46-52: ERROR: application of
sizeof to pointer
Signed-off-by: Ran Sun <sunran001@...suo.com>
---
drivers/clk/keystone/sci-clk.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clk/keystone/sci-clk.c
b/drivers/clk/keystone/sci-clk.c
index 6c1df4f11536..2c68c1e09d1f 100644
--- a/drivers/clk/keystone/sci-clk.c
+++ b/drivers/clk/keystone/sci-clk.c
@@ -389,7 +389,7 @@ static struct clk_hw *sci_clk_get(struct
of_phandle_args *clkspec, void *data)
key.clk_id = clkspec->args[1];
clk = bsearch(&key, provider->clocks, provider->num_clocks,
- sizeof(clk), _cmp_sci_clk);
+ sizeof(**clk), _cmp_sci_clk);
if (!clk)
return ERR_PTR(-ENODEV);
Powered by blists - more mailing lists