Commit 5667b5b5 authored by Anson Huang's avatar Anson Huang Committed by Wolfram Sang

i2c: imx-lpi2c: use devm_platform_ioremap_resource() to simplify code

Use the new helper devm_platform_ioremap_resource() which wraps the
platform_get_resource() and devm_ioremap_resource() together, to
simplify the code.
Signed-off-by: default avatarAnson Huang <Anson.Huang@nxp.com>
Acked-by: default avatarDong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent b17e6d19
...@@ -545,7 +545,6 @@ MODULE_DEVICE_TABLE(of, lpi2c_imx_of_match); ...@@ -545,7 +545,6 @@ MODULE_DEVICE_TABLE(of, lpi2c_imx_of_match);
static int lpi2c_imx_probe(struct platform_device *pdev) static int lpi2c_imx_probe(struct platform_device *pdev)
{ {
struct lpi2c_imx_struct *lpi2c_imx; struct lpi2c_imx_struct *lpi2c_imx;
struct resource *res;
unsigned int temp; unsigned int temp;
int irq, ret; int irq, ret;
...@@ -553,8 +552,7 @@ static int lpi2c_imx_probe(struct platform_device *pdev) ...@@ -553,8 +552,7 @@ static int lpi2c_imx_probe(struct platform_device *pdev)
if (!lpi2c_imx) if (!lpi2c_imx)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); lpi2c_imx->base = devm_platform_ioremap_resource(pdev, 0);
lpi2c_imx->base = devm_ioremap_resource(&pdev->dev, res);
if (IS_ERR(lpi2c_imx->base)) if (IS_ERR(lpi2c_imx->base))
return PTR_ERR(lpi2c_imx->base); return PTR_ERR(lpi2c_imx->base);
......
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