aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnd Bergmann <[email protected]>2023-05-16 17:31:03 +0200
committerArnd Bergmann <[email protected]>2023-05-26 13:33:05 +0200
commit94c1c0a29bfccf94c70afef5d89734bce778add6 (patch)
tree50ae8fe21f620fb8a466f1b2b5e612640d499acc
parentecd2a5769d09e57b6d9cafdbcf91c13f31286b06 (diff)
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 <[email protected]> Acked-by: Aaro Koskinen <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnd Bergmann <[email protected]>
-rw-r--r--arch/arm/mach-omap1/serial.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap1/serial.c b/arch/arm/mach-omap1/serial.c
index c7f590645774..19ea9842acc1 100644
--- a/arch/arm/mach-omap1/serial.c
+++ b/arch/arm/mach-omap1/serial.c
@@ -19,6 +19,7 @@
#include <asm/mach-types.h>
+#include "common.h"
#include "serial.h"
#include "mux.h"
#include "pm.h"