forked from Minki/linux
video: Convert to devm_ioremap_resource()
Convert all uses of devm_request_and_ioremap() to the newly introduced devm_ioremap_resource() which provides more consistent error handling. devm_ioremap_resource() provides its own error messages so all explicit error messages can be removed from the failure code paths. Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Acked-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
148e11349b
commit
bc3bad166c
@ -1076,11 +1076,9 @@ static int exynos_dp_probe(struct platform_device *pdev)
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
|
||||
dp->reg_base = devm_request_and_ioremap(&pdev->dev, res);
|
||||
if (!dp->reg_base) {
|
||||
dev_err(&pdev->dev, "failed to ioremap\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
dp->reg_base = devm_ioremap_resource(&pdev->dev, res);
|
||||
if (IS_ERR(dp->reg_base))
|
||||
return PTR_ERR(dp->reg_base);
|
||||
|
||||
dp->irq = platform_get_irq(pdev, 0);
|
||||
if (dp->irq == -ENXIO) {
|
||||
|
@ -660,9 +660,9 @@ static int jzfb_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
jzfb->base = devm_request_and_ioremap(&pdev->dev, mem);
|
||||
if (!jzfb->base) {
|
||||
ret = -EBUSY;
|
||||
jzfb->base = devm_ioremap_resource(&pdev->dev, mem);
|
||||
if (IS_ERR(jzfb->base)) {
|
||||
ret = PTR_ERR(jzfb->base);
|
||||
goto err_framebuffer_release;
|
||||
}
|
||||
|
||||
|
@ -1080,11 +1080,9 @@ static int __init omapdss_hdmihw_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
/* Base address taken from platform */
|
||||
hdmi.ip_data.base_wp = devm_request_and_ioremap(&pdev->dev, res);
|
||||
if (!hdmi.ip_data.base_wp) {
|
||||
DSSERR("can't ioremap WP\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
hdmi.ip_data.base_wp = devm_ioremap_resource(&pdev->dev, res);
|
||||
if (IS_ERR(hdmi.ip_data.base_wp))
|
||||
return PTR_ERR(hdmi.ip_data.base_wp);
|
||||
|
||||
r = hdmi_get_clocks(pdev);
|
||||
if (r) {
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
/*#define DEBUG*/
|
||||
|
||||
#include <linux/err.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/ioport.h>
|
||||
@ -357,11 +358,9 @@ static int __init vrfb_probe(struct platform_device *pdev)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
vrfb_base = devm_request_and_ioremap(&pdev->dev, mem);
|
||||
if (!vrfb_base) {
|
||||
dev_err(&pdev->dev, "can't ioremap vrfb memory\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
vrfb_base = devm_ioremap_resource(&pdev->dev, mem);
|
||||
if (IS_ERR(vrfb_base))
|
||||
return PTR_ERR(vrfb_base);
|
||||
|
||||
num_ctxs = pdev->num_resources - 1;
|
||||
|
||||
|
@ -1421,10 +1421,9 @@ static int s3c_fb_probe(struct platform_device *pdev)
|
||||
pm_runtime_enable(sfb->dev);
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
sfb->regs = devm_request_and_ioremap(dev, res);
|
||||
if (!sfb->regs) {
|
||||
dev_err(dev, "failed to map registers\n");
|
||||
ret = -ENXIO;
|
||||
sfb->regs = devm_ioremap_resource(dev, res);
|
||||
if (IS_ERR(sfb->regs)) {
|
||||
ret = PTR_ERR(sfb->regs);
|
||||
goto err_lcd_clk;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user