Commit c833e96d authored by Johan Hovold's avatar Johan Hovold Committed by Ben Hutchings

gpio: unregister gpiochip device before removing it

commit 01cca93a upstream.

Unregister gpiochip device (used to export information through sysfs)
before removing it internally. This way removal will reverse addition.
Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 56481c29
......@@ -1137,6 +1137,8 @@ int gpiochip_remove(struct gpio_chip *chip)
int status = 0;
unsigned id;
gpiochip_unexport(chip);
spin_lock_irqsave(&gpio_lock, flags);
of_gpiochip_remove(chip);
......@@ -1154,9 +1156,6 @@ int gpiochip_remove(struct gpio_chip *chip)
spin_unlock_irqrestore(&gpio_lock, flags);
if (status == 0)
gpiochip_unexport(chip);
return status;
}
EXPORT_SYMBOL_GPL(gpiochip_remove);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment