arm64: pgtable: Include <asm/types.h>

arch/arm64/include/asm/pgtable-3level-types.h uses Linux-specific types
but doesn't include the header defining them causing build failures if
it's not pulled in by some other header first.  Fix that by adding the
required include.

Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Mark Brown
2013-12-17 20:59:55 +00:00
parent 9991ec3a98
commit 36d68d3b4d

View File

@@ -16,6 +16,8 @@
#ifndef __ASM_PGTABLE_3LEVEL_TYPES_H
#define __ASM_PGTABLE_3LEVEL_TYPES_H
#include <asm/types.h>
typedef u64 pteval_t;
typedef u64 pmdval_t;
typedef u64 pgdval_t;