mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-09 08:33:35 +00:00
gpio: sysfs: fix inverted pointer logic
The logic is inverted, we want to return if the chip *IS* NULL.
Fixes: d83cee3d2b ("gpio: protect the pointer to gpio_chip in gpio_device with SRCU")
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/linux-gpio/15671341-0b29-40e0-b487-0a4cdc414d8e@moroto.mountain/
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
This commit is contained in:
parent
0d7fa0eda4
commit
be91c19e47
@ -802,7 +802,7 @@ void gpiochip_sysfs_unregister(struct gpio_device *gdev)
|
||||
guard(srcu)(&gdev->srcu);
|
||||
|
||||
chip = srcu_dereference(gdev->chip, &gdev->srcu);
|
||||
if (chip)
|
||||
if (!chip)
|
||||
return;
|
||||
|
||||
/* unregister gpiod class devices owned by sysfs */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user