Commit 579db09c authored by Fabio Estevam's avatar Fabio Estevam Committed by Greg Kroah-Hartman

nvmem: imx-iim: Use of_device_get_match_data()

The retrieval of driver data via of_device_get_match_data() can make
the code simpler.

Use of_device_get_match_data() to simplify the code.
Signed-off-by: default avatarFabio Estevam <festevam@gmail.com>
Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Link: https://lore.kernel.org/r/20210129171430.11328-3-srinivas.kandagatla@linaro.orgSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 72e008ce
...@@ -96,7 +96,6 @@ MODULE_DEVICE_TABLE(of, imx_iim_dt_ids); ...@@ -96,7 +96,6 @@ MODULE_DEVICE_TABLE(of, imx_iim_dt_ids);
static int imx_iim_probe(struct platform_device *pdev) static int imx_iim_probe(struct platform_device *pdev)
{ {
const struct of_device_id *of_id;
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
struct iim_priv *iim; struct iim_priv *iim;
struct nvmem_device *nvmem; struct nvmem_device *nvmem;
...@@ -111,11 +110,7 @@ static int imx_iim_probe(struct platform_device *pdev) ...@@ -111,11 +110,7 @@ static int imx_iim_probe(struct platform_device *pdev)
if (IS_ERR(iim->base)) if (IS_ERR(iim->base))
return PTR_ERR(iim->base); return PTR_ERR(iim->base);
of_id = of_match_device(imx_iim_dt_ids, dev); drvdata = of_device_get_match_data(&pdev->dev);
if (!of_id)
return -ENODEV;
drvdata = of_id->data;
iim->clk = devm_clk_get(dev, NULL); iim->clk = devm_clk_get(dev, NULL);
if (IS_ERR(iim->clk)) if (IS_ERR(iim->clk))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment