Fix following compilation error due to missing include file:Same was covered already?
arch/arm/mach-omap2/omap4-restart.c:21:28: warning: âenum reboot_modeâ declared inside parameter list [enabled by default]
arch/arm/mach-omap2/omap4-restart.c:21:28: warning: its scope is only this definition or declaration, which is probably not what you want [enabled by default]
arch/arm/mach-omap2/omap4-restart.c:21:40: error: parameter 1 (âmodeâ) has incomplete type
arch/arm/mach-omap2/omap4-restart.c:21:6: warning: function declaration isnât a prototype [-Wstrict-prototypes]
make[1]: *** [arch/arm/mach-omap2/omap4-restart.o] Error 1
Signed-off-by: Vincent Stehlà <vincent.stehle@xxxxxxxxxxxxx>
Cc: Robin Holt <holt@xxxxxxx>
Cc: Russell King <rmk+kernel@xxxxxxxxxxxxxxxx>
Cc: Tony Lindgren <tony@xxxxxxxxxxx>
Cc: trivial@xxxxxxxxxx
---
Hi,
This fixes the build of linux-next for arch ARM, config multi_v7_defconfig, tag
next-20130627.
Best regards,
V.
arch/arm/mach-omap2/omap4-restart.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/mach-omap2/omap4-restart.c b/arch/arm/mach-omap2/omap4-restart.c
index 652adde..41dfd7d 100644
--- a/arch/arm/mach-omap2/omap4-restart.c
+++ b/arch/arm/mach-omap2/omap4-restart.c
@@ -8,6 +8,7 @@
*/
#include <linux/types.h>
+#include <linux/reboot.h>
#include "prminst44xx.h"
/**