Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ededa045 authored by Anson Huang's avatar Anson Huang Committed by Greg Kroah-Hartman
Browse files

nvmem: imx-iim: 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>
Reviewed-by: default avatarMukesh Ojha <mojha@codeaurora.org>
Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 794a1e22
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
@@ -104,7 +104,6 @@ static int imx_iim_probe(struct platform_device *pdev)
{
{
	const struct of_device_id *of_id;
	const struct of_device_id *of_id;
	struct device *dev = &pdev->dev;
	struct device *dev = &pdev->dev;
	struct resource *res;
	struct iim_priv *iim;
	struct iim_priv *iim;
	struct nvmem_device *nvmem;
	struct nvmem_device *nvmem;
	struct nvmem_config cfg = {};
	struct nvmem_config cfg = {};
@@ -114,8 +113,7 @@ static int imx_iim_probe(struct platform_device *pdev)
	if (!iim)
	if (!iim)
		return -ENOMEM;
		return -ENOMEM;


	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	iim->base = devm_platform_ioremap_resource(pdev, 0);
	iim->base = devm_ioremap_resource(dev, res);
	if (IS_ERR(iim->base))
	if (IS_ERR(iim->base))
		return PTR_ERR(iim->base);
		return PTR_ERR(iim->base);