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

drivers/video/omap2: don't check resource with devm_ioremap_resource

devm_ioremap_resource does sanity checks on the given resource. No need to
duplicate this in the driver.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>

-5
-5
drivers/video/omap2/vrfb.c
··· 353 353 /* first resource is the register res, the rest are vrfb contexts */ 354 354 355 355 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); 356 - if (!mem) { 357 - dev_err(&pdev->dev, "can't get vrfb base address\n"); 358 - return -EINVAL; 359 - } 360 - 361 356 vrfb_base = devm_ioremap_resource(&pdev->dev, mem); 362 357 if (IS_ERR(vrfb_base)) 363 358 return PTR_ERR(vrfb_base);