From: Arnd Bergmann Date: Tue, 16 May 2023 15:31:03 +0000 (+0200) Subject: ARM: omap1: add missing include X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=94c1c0a29bfccf94c70afef5d89734bce778add6;p=linux.git ARM: omap1: add missing include The omap_serial_wakeup_init() declaration is not visible where it is defined, so make sure "common.h" is included here, avoiding: arch/arm/mach-omap1/serial.c:221:12: error: no previous prototype for 'omap_serial_wakeup_init' [-Werror=missing-prototypes] Acked-by: Tony Lindgren Acked-by: Aaro Koskinen Link: https://lore.kernel.org/r/20230516153109.514251-8-arnd@kernel.org Signed-off-by: Arnd Bergmann --- diff --git a/arch/arm/mach-omap1/serial.c b/arch/arm/mach-omap1/serial.c index c7f5906457748..19ea9842acc1d 100644 --- a/arch/arm/mach-omap1/serial.c +++ b/arch/arm/mach-omap1/serial.c @@ -19,6 +19,7 @@ #include +#include "common.h" #include "serial.h" #include "mux.h" #include "pm.h"