staging: imx-drm: use devm_ioremap_resource()

Replace a call to deprecated devm_request_and_ioremap by devm_ioremap_resource.

Found with coccicheck and this semantic patch:
 scripts/coccinelle/api/devm_request_and_ioremap.cocci.

Signed-off-by: Laurent Navet <laurent.navet@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Laurent Navet 2013-05-02 13:41:41 +02:00 committed by Greg Kroah-Hartman
parent 79719e6441
commit 9b43b56f79
1 changed files with 3 additions and 5 deletions

View File

@ -638,11 +638,9 @@ static int imx_tve_probe(struct platform_device *pdev)
return -ENOENT; return -ENOENT;
} }
base = devm_request_and_ioremap(&pdev->dev, res); base = devm_ioremap_resource(&pdev->dev, res);
if (!base) { if (IS_ERR(base))
dev_err(&pdev->dev, "failed to remap memory region\n"); return PTR_ERR(base);
return -ENOENT;
}
tve_regmap_config.lock_arg = tve; tve_regmap_config.lock_arg = tve;
tve->regmap = devm_regmap_init_mmio_clk(&pdev->dev, "tve", base, tve->regmap = devm_regmap_init_mmio_clk(&pdev->dev, "tve", base,