Commit 2f5df09d authored by Chanho Park's avatar Chanho Park Committed by Pavel Emelyanov

vdso: fix build error

This patch fixes build error due to lack of bool type. It can be fixed adding
include file.

In file included from arch/arm/vdso-pie.c:3:0:
include/vdso.h:41:1: error: unknown type name ‘bool’
include/vdso.h:93:1: error: unknown type name ‘bool’
Signed-off-by: 's avatarChanho Park <chanho61.park@samsung.com>
Signed-off-by: 's avatarMyungjoo Ham <myungjoo.ham@samsung.com>
Acked-by: 's avatarAlexander Kartashov <alekskartashov@parallels.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 3f70116d
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#include "asm/vdso.h" #include "asm/vdso.h"
#include "asm/int.h" #include "asm/int.h"
#include "asm/types.h"
#define VDSO_PROT (PROT_READ | PROT_EXEC) #define VDSO_PROT (PROT_READ | PROT_EXEC)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment