summaryrefslogtreecommitdiff
path: root/drivers/gpio
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2023-06-05 15:58:10 +0300
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>2023-06-09 12:38:36 +0300
commitb0ce9ce408b6cfbce6c720c7eb084e6d81a04434 (patch)
tree7860de53f60236ceb92e3d2e519f6f6f852cc6fc /drivers/gpio
parentbe6736cc5423e9c153f38ca49ed9ba05a02a58f9 (diff)
downloadlinux-b0ce9ce408b6cfbce6c720c7eb084e6d81a04434.tar.xz
gpiolib: Do not unexport GPIO on freeing
Since the legacy exporting is gone with 2f804aca4832 ("gpiolib: Kill unused GPIOF_EXPORT and Co") there is no need to unexport GPIO on freeing. Remove that call. Note, the other users of this functionality do that explicitly, except one SH and one OMAP boardfile which don't free GPIO anyways, so it is safe to drop the call. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpiolib.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index d5f23c2b3f30..6e66e7e01992 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -2117,8 +2117,6 @@ static bool gpiod_free_commit(struct gpio_desc *desc)
might_sleep();
- gpiod_unexport(desc);
-
spin_lock_irqsave(&gpio_lock, flags);
gc = desc->gdev->chip;