2024-04-10 17:04:29

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [PATCH] gpio: lpc32xx: fix module autoloading

Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
based on the alias from of_device_id table.

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
drivers/gpio/gpio-lpc32xx.c | 1 +
1 file changed, 1 insertion(+)

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 = {
--
2.34.1



2024-04-12 19:31:38

by Bartosz Golaszewski

[permalink] [raw]
Subject: Re: [PATCH] gpio: lpc32xx: fix module autoloading

On Wed, Apr 10, 2024 at 7:03 PM Krzysztof Kozlowski <[email protected]> wrote:
>
> Add MODULE_DEVICE_TABLE(), so the module could be properly autoloaded
> based on the alias from of_device_id table.
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>
> ---
> drivers/gpio/gpio-lpc32xx.c | 1 +
> 1 file changed, 1 insertion(+)
>
> 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 = {
> --
> 2.34.1
>

Queued for fixes, thanks!

Bart