From 9132ce450bd141cd8c5776b41e90f146cae4bc3b Mon Sep 17 00:00:00 2001 From: Linus Walleij Date: Fri, 23 Sep 2016 14:34:45 +0200 Subject: [PATCH] ARM: omap2: fix missing include commit d47529b2e9fe "gpio: don't include module.h in shared driver header" removed from the header. It seems arch/arm/mach-omap2/board-rx51-peripherals.c is using __initdata_or_module from through to , so break this dependency so that we get a clean compile. Cc: Paul Gortmaker Cc: Tony Lindgren Fixes: d47529b2e9fe ("gpio: don't include module.h in shared driver header") Signed-off-by: Linus Walleij --- arch/arm/mach-omap2/board-rx51-peripherals.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index a5ab712..6d3af43 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c @@ -29,6 +29,7 @@ #include #include #include +#include #include -- 2.7.4