Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fbdev: omapfb: use devm_platform_ioremap_resource() to simplify code

Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Alexios Zavras <alexios.zavras@intel.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Allison Randal <allison@lohutok.net>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190904115406.23880-1-yuehaibing@huawei.com

authored by

YueHaibing and committed by
Bartlomiej Zolnierkiewicz
1d47d0bb eaa051a0

+1 -3
+1 -3
drivers/video/fbdev/omap2/omapfb/vrfb.c
··· 339 339 int i; 340 340 341 341 /* first resource is the register res, the rest are vrfb contexts */ 342 - 343 - mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); 344 - vrfb_base = devm_ioremap_resource(&pdev->dev, mem); 342 + vrfb_base = devm_platform_ioremap_resource(pdev, 0); 345 343 if (IS_ERR(vrfb_base)) 346 344 return PTR_ERR(vrfb_base); 347 345