summary refs log tree commit diff
diff options
context:
space:
mode:
authorVarka Bhadram <varkabhadram@gmail.com>2014-10-28 12:07:05 +0530
committerLinus Walleij <linus.walleij@linaro.org>2014-10-31 09:02:34 +0100
commit5bb5428956d3eecb428e72e7f521ff6ac767384b (patch)
treec870133549e51d2a20cc16dce85a23c533fcb424
parent2071d0968e564b4b4a11d36dc58de6e57188edd4 (diff)
downloadlinux-5bb5428956d3eecb428e72e7f521ff6ac767384b.tar.gz
gpio: gpio-davinci: remove duplicate check on resource
Sanity check on resource happening with devm_ioremap_resource().

Signed-off-by: Varka Bhadram <varkab@cdac.in>
Acked-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/gpio/gpio-davinci.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/gpio/gpio-davinci.c b/drivers/gpio/gpio-davinci.c
index 9f0682534e2f..3faf5f944ccc 100644
--- a/drivers/gpio/gpio-davinci.c
+++ b/drivers/gpio/gpio-davinci.c
@@ -234,11 +234,6 @@ static int davinci_gpio_probe(struct platform_device *pdev)
 		return -ENOMEM;
 
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	if (!res) {
-		dev_err(dev, "Invalid memory resource\n");
-		return -EBUSY;
-	}
-
 	gpio_base = devm_ioremap_resource(dev, res);
 	if (IS_ERR(gpio_base))
 		return PTR_ERR(gpio_base);