On Tue, May 05, 2026 at 10:24:25PM +0200, Arnd Bergmann wrote: > index 7df78867db49..0d5eaf4b100c 100644 > --- a/include/linux/platform_data/asoc-pxa.h > +++ b/include/linux/platform_data/asoc-pxa.h > @@ -6,6 +6,6 @@ > #include > #include > > -extern void pxa27x_configure_ac97reset(int reset_gpio, bool to_gpio); > +extern void pxa27x_configure_ac97reset(struct gpio_desc *reset_gpio, bool to_gpio); > > #endif You're adding a use of struct gpio_desc but not including the header for it or declaring it. Which won't really matter here but still.