Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

gpiolib: Add support for removing registered consumer lookup table

In case we unload and load a driver module again that is registering a
lookup table, without this it will result in multiple entries. Provide
an option to remove the lookup table on driver unload

Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Alexandre Courbot <gnurou@gmail.com>
Cc: Thierry Reding <thierry.reding@gmail.com>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Tested-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Shobhit Kumar <shobhit.kumar@intel.com>
Acked-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>

authored by

Shobhit Kumar and committed by
Daniel Vetter
be9015ab 52721d9d

+14
+13
drivers/gpio/gpiolib.c
··· 1672 1672 mutex_unlock(&gpio_lookup_lock); 1673 1673 } 1674 1674 1675 + /** 1676 + * gpiod_remove_lookup_table() - unregister GPIO device consumers 1677 + * @table: table of consumers to unregister 1678 + */ 1679 + void gpiod_remove_lookup_table(struct gpiod_lookup_table *table) 1680 + { 1681 + mutex_lock(&gpio_lookup_lock); 1682 + 1683 + list_del(&table->list); 1684 + 1685 + mutex_unlock(&gpio_lookup_lock); 1686 + } 1687 + 1675 1688 static struct gpio_desc *of_find_gpio(struct device *dev, const char *con_id, 1676 1689 unsigned int idx, 1677 1690 enum gpio_lookup_flags *flags)
+1
include/linux/gpio/machine.h
··· 57 57 } 58 58 59 59 void gpiod_add_lookup_table(struct gpiod_lookup_table *table); 60 + void gpiod_remove_lookup_table(struct gpiod_lookup_table *table); 60 61 61 62 #endif /* __LINUX_GPIO_MACHINE_H */