diff options
author | abdoulaye berthe <berthe.ab@gmail.com> | 2014-07-12 16:30:12 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-07-22 10:39:26 -0400 |
commit | 9f5132ae82fdbb047cc187bf689a81c8cc0de7fa (patch) | |
tree | 3d5ce5c1a1ff25fdbec52416ad21eb1ad14ca25f /drivers/gpio/gpio-ml-ioh.c | |
parent | 38ed0187d2da7f219f9f84d8921b5c95b266b34b (diff) |
gpio: remove all usage of gpio_remove retval in driver/gpio
Signed-off-by: abdoulaye berthe <berthe.ab@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-ml-ioh.c')
-rw-r--r-- | drivers/gpio/gpio-ml-ioh.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/gpio/gpio-ml-ioh.c b/drivers/gpio/gpio-ml-ioh.c index d51329d23d38..5536108aa9db 100644 --- a/drivers/gpio/gpio-ml-ioh.c +++ b/drivers/gpio/gpio-ml-ioh.c | |||
@@ -497,8 +497,7 @@ err_irq_alloc_descs: | |||
497 | err_gpiochip_add: | 497 | err_gpiochip_add: |
498 | while (--i >= 0) { | 498 | while (--i >= 0) { |
499 | chip--; | 499 | chip--; |
500 | if (gpiochip_remove(&chip->gpio)) | 500 | gpiochip_remove(&chip->gpio); |
501 | dev_err(&pdev->dev, "Failed gpiochip_remove(%d)\n", i); | ||
502 | } | 501 | } |
503 | kfree(chip_save); | 502 | kfree(chip_save); |
504 | 503 | ||
@@ -519,7 +518,6 @@ err_pci_enable: | |||
519 | 518 | ||
520 | static void ioh_gpio_remove(struct pci_dev *pdev) | 519 | static void ioh_gpio_remove(struct pci_dev *pdev) |
521 | { | 520 | { |
522 | int err; | ||
523 | int i; | 521 | int i; |
524 | struct ioh_gpio *chip = pci_get_drvdata(pdev); | 522 | struct ioh_gpio *chip = pci_get_drvdata(pdev); |
525 | void *chip_save; | 523 | void *chip_save; |
@@ -530,9 +528,7 @@ static void ioh_gpio_remove(struct pci_dev *pdev) | |||
530 | 528 | ||
531 | for (i = 0; i < 8; i++, chip++) { | 529 | for (i = 0; i < 8; i++, chip++) { |
532 | irq_free_descs(chip->irq_base, num_ports[i]); | 530 | irq_free_descs(chip->irq_base, num_ports[i]); |
533 | err = gpiochip_remove(&chip->gpio); | 531 | gpiochip_remove(&chip->gpio); |
534 | if (err) | ||
535 | dev_err(&pdev->dev, "Failed gpiochip_remove\n"); | ||
536 | } | 532 | } |
537 | 533 | ||
538 | chip = chip_save; | 534 | chip = chip_save; |