diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-04-18 10:18:03 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-04-18 10:18:03 -0700 |
commit | 360a348fd7fe72ec42a80d025e6fc81cda19f48e (patch) | |
tree | 1de88f41d7cfbec03ff716d8e07c83e3507e90a1 /drivers/gpio/gpio-lpc32xx.c | |
parent | e4add02086a61247e9ff65a4600dd84a31aacc92 (diff) | |
parent | 69ffed4b62523bbc85511f150500329d28aba356 (diff) | |
download | linux-360a348fd7fe72ec42a80d025e6fc81cda19f48e.tar.gz linux-360a348fd7fe72ec42a80d025e6fc81cda19f48e.tar.bz2 linux-360a348fd7fe72ec42a80d025e6fc81cda19f48e.zip |
Merge tag 'gpio-fixes-for-v6.9-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux
Pull gpio fixes from Bartosz Golaszewski:
- use -ENOTSUPP consistently in Intel GPIO drivers
- don't include dt-bindings headers in gpio-swnode code
- add missing of device table to gpio-lpc32xx and fix autoloading
* tag 'gpio-fixes-for-v6.9-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
gpiolib: swnode: Remove wrong header inclusion
gpio: lpc32xx: fix module autoloading
gpio: crystalcove: Use -ENOTSUPP consistently
gpio: wcove: Use -ENOTSUPP consistently
Diffstat (limited to 'drivers/gpio/gpio-lpc32xx.c')
-rw-r--r-- | drivers/gpio/gpio-lpc32xx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/gpio-lpc32xx.c b/drivers/gpio/gpio-lpc32xx.c index 5ef8af824980..c097e310c9e8 100644 --- a/drivers/gpio/gpio-lpc32xx.c +++ b/drivers/gpio/gpio-lpc32xx.c @@ -529,6 +529,7 @@ static const struct of_device_id lpc32xx_gpio_of_match[] = { { .compatible = "nxp,lpc3220-gpio", }, { }, }; +MODULE_DEVICE_TABLE(of, lpc32xx_gpio_of_match); static struct platform_driver lpc32xx_gpio_driver = { .driver = { |