aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinghao Chi (CGEL ZTE) <[email protected]>2022-03-03 01:48:56 +0000
committerStephen Boyd <[email protected]>2022-03-11 19:23:30 -0800
commitcde8e3ae3d374bf7826d87bcb6b28fb334dcaf82 (patch)
tree4f90872500a13c9abd1843598d1e89cff02e0bd9
parent09e3b18ca5def4680b65d60159e595dbbcf7743f (diff)
clk: Use of_device_get_match_data()
Use of_device_get_match_data() to simplify the code. Reported-by: Zeal Robot <[email protected]> Signed-off-by: Minghao Chi (CGEL ZTE) <[email protected]> Link: https://lore.kernel.org/r/[email protected] Acked-by: Neil Armstrong <[email protected]> Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r--drivers/clk/clk-oxnas.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/clk/clk-oxnas.c b/drivers/clk/clk-oxnas.c
index 78d5ea669fea..cda5e258355b 100644
--- a/drivers/clk/clk-oxnas.c
+++ b/drivers/clk/clk-oxnas.c
@@ -209,15 +209,11 @@ static int oxnas_stdclk_probe(struct platform_device *pdev)
{
struct device_node *np = pdev->dev.of_node;
const struct oxnas_stdclk_data *data;
- const struct of_device_id *id;
struct regmap *regmap;
int ret;
int i;
- id = of_match_device(oxnas_stdclk_dt_ids, &pdev->dev);
- if (!id)
- return -ENODEV;
- data = id->data;
+ data = of_device_get_match_data(&pdev->dev);
regmap = syscon_node_to_regmap(of_get_parent(np));
if (IS_ERR(regmap)) {