projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e69052
)
clk/rockchip: Use of_device_get_match_data()
author
Minghao Chi (CGEL ZTE)
<chi.minghao@zte.com.cn>
Mon, 21 Feb 2022 02:01:03 +0000
(
02:01
+0000)
committer
Heiko Stuebner
<heiko@sntech.de>
Wed, 23 Feb 2022 22:59:27 +0000
(23:59 +0100)
Use of_device_get_match_data() to simplify the code.
Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
Link:
https://lore.kernel.org/r/20220221020103.1925026-1-chi.minghao@zte.com.cn
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
drivers/clk/rockchip/clk-rk3568.c
patch
|
blob
|
history
diff --git
a/drivers/clk/rockchip/clk-rk3568.c
b/drivers/clk/rockchip/clk-rk3568.c
index 63dfbeeeb06d9297276ed37eca4f6277bca188a8..606ae6cd918b24b52bdd24f7bf5ed9153d4fff57 100644
(file)
--- a/
drivers/clk/rockchip/clk-rk3568.c
+++ b/
drivers/clk/rockchip/clk-rk3568.c
@@
-1703,14
+1703,12
@@
static const struct of_device_id clk_rk3568_match_table[] = {
static int __init clk_rk3568_probe(struct platform_device *pdev)
{
struct device_node *np = pdev->dev.of_node;
- const struct of_device_id *match;
const struct clk_rk3568_inits *init_data;
-
match = of_match_device(clk_rk3568_match_table,
&pdev->dev);
- if (!
match || !match->
data)
+
init_data = (struct clk_rk3568_inits *)of_device_get_match_data(
&pdev->dev);
+ if (!
init_
data)
return -EINVAL;
- init_data = match->data;
if (init_data->inits)
init_data->inits(np);