Commit 29589f06 authored by Wolfram Sang's avatar Wolfram Sang
Browse files

drivers/ata: 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: default avatarWolfram Sang <wsa@the-dreams.de>
parent f722406f
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -933,11 +933,6 @@ static int ep93xx_pata_probe(struct platform_device *pdev)
	}

	mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!mem_res) {
		err = -ENXIO;
		goto err_rel_gpio;
	}

	ide_base = devm_ioremap_resource(&pdev->dev, mem_res);
	if (IS_ERR(ide_base)) {
		err = PTR_ERR(ide_base);