diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2013-05-12 15:19:46 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2013-05-12 15:19:46 +0200 |
commit | 29589f06d2430efb76c227b0117029ebd3101eec (patch) | |
tree | 9675ddf56f2c44c40592c58ee72bfc86a83bc037 /drivers/ata | |
parent | f722406faae2d073cc1d01063d1123c35425939e (diff) | |
download | linux-next-29589f06d2430efb76c227b0117029ebd3101eec.tar.gz |
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: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/pata_ep93xx.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/ata/pata_ep93xx.c b/drivers/ata/pata_ep93xx.c index c1bfaf43d109..980b88e109fc 100644 --- a/drivers/ata/pata_ep93xx.c +++ b/drivers/ata/pata_ep93xx.c @@ -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); |