diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2017-05-15 13:40:20 +0200 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2017-05-30 12:07:42 +0200 |
commit | 6efd8499d9bda657fc82621b24d6122a01332c19 (patch) | |
tree | 601da5995a1cd645f64f67af04130f229b5a1df8 /arch/arm64/mm | |
parent | arm64: Add dump_backtrace() in show_regs (diff) | |
download | linux-6efd8499d9bda657fc82621b24d6122a01332c19.tar.xz linux-6efd8499d9bda657fc82621b24d6122a01332c19.zip |
arm64: mm: explicity include linux/vmalloc.h
arm64's mm/mmu.c uses vm_area_add_early, struct vm_area and other
definitions but relies on implict inclusion of linux/vmalloc.h which
means that changes in other headers could break the build. Thus, add an
explicit include.
Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/mm')
-rw-r--r-- | arch/arm64/mm/mmu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c index 0c429ec6fde8..23c2d89a362e 100644 --- a/arch/arm64/mm/mmu.c +++ b/arch/arm64/mm/mmu.c @@ -31,6 +31,7 @@ #include <linux/fs.h> #include <linux/io.h> #include <linux/mm.h> +#include <linux/vmalloc.h> #include <asm/barrier.h> #include <asm/cputype.h> |