2023-05-17 10:14:53

by Arnd Bergmann

[permalink] [raw]
Subject: [PATCH v2] gpio: sa1100: include <mach/generic.h>

From: Arnd Bergmann <[email protected]>

sa1100_init_gpio() is declared in a machine specific header so it
can be called from platform code, but the definition is in the device
driver, which causes a warning:

drivers/gpio/gpio-sa1100.c:310:13: error: no previous prototype for 'sa1100_init_gpio' [-Werror=missing-prototypes]

It's already possible to include mach/generic.h from drivers, so add
this one here as well.

Signed-off-by: Arnd Bergmann <[email protected]>
---
v2: rebase back on mainline tree
---
drivers/gpio/gpio-sa1100.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/gpio/gpio-sa1100.c b/drivers/gpio/gpio-sa1100.c
index edff5e81489f..242dad763ac4 100644
--- a/drivers/gpio/gpio-sa1100.c
+++ b/drivers/gpio/gpio-sa1100.c
@@ -12,6 +12,7 @@
#include <soc/sa1100/pwer.h>
#include <mach/hardware.h>
#include <mach/irqs.h>
+#include <mach/generic.h>

struct sa1100_gpio_chip {
struct gpio_chip chip;
--
2.39.2



2023-05-17 10:29:27

by Bartosz Golaszewski

[permalink] [raw]
Subject: Re: [PATCH v2] gpio: sa1100: include <mach/generic.h>

On Wed, May 17, 2023 at 11:53 AM Arnd Bergmann <[email protected]> wrote:
>
> From: Arnd Bergmann <[email protected]>
>
> sa1100_init_gpio() is declared in a machine specific header so it
> can be called from platform code, but the definition is in the device
> driver, which causes a warning:
>
> drivers/gpio/gpio-sa1100.c:310:13: error: no previous prototype for 'sa1100_init_gpio' [-Werror=missing-prototypes]
>
> It's already possible to include mach/generic.h from drivers, so add
> this one here as well.
>
> Signed-off-by: Arnd Bergmann <[email protected]>
> ---
> v2: rebase back on mainline tree
> ---
> drivers/gpio/gpio-sa1100.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpio/gpio-sa1100.c b/drivers/gpio/gpio-sa1100.c
> index edff5e81489f..242dad763ac4 100644
> --- a/drivers/gpio/gpio-sa1100.c
> +++ b/drivers/gpio/gpio-sa1100.c
> @@ -12,6 +12,7 @@
> #include <soc/sa1100/pwer.h>
> #include <mach/hardware.h>
> #include <mach/irqs.h>
> +#include <mach/generic.h>
>
> struct sa1100_gpio_chip {
> struct gpio_chip chip;
> --
> 2.39.2
>

Now applied, thanks!

Bart