diff options
author | Michal Simek <monstr@monstr.eu> | 2011-01-16 13:50:17 +0100 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2011-01-16 14:29:21 +0100 |
commit | 1947fc1d51fa7c21e9c253d37d076ef6f4d73130 (patch) | |
tree | b01d8edd62cb521d5218549cfe9c652afbfb9c5c | |
parent | 1b59be2a6cdcb5a12e18d8315c07c94a624de48f (diff) | |
download | linux-stable-1947fc1d51fa7c21e9c253d37d076ef6f4d73130.tar.gz linux-stable-1947fc1d51fa7c21e9c253d37d076ef6f4d73130.tar.bz2 linux-stable-1947fc1d51fa7c21e9c253d37d076ef6f4d73130.zip |
microblaze: Fix missing pagemap.h
Add missing linux/pagemap.h to solve compilation error.
Error log:
In file included from linux/arch/microblaze/include/asm/tlb.h:17,
from mm/pgtable-generic.c:9:
include/asm-generic/tlb.h: In function 'tlb_flush_mmu':
include/asm-generic/tlb.h:76: error: implicit declaration of function 'release_pages'
include/asm-generic/tlb.h: In function 'tlb_remove_page':
include/asm-generic/tlb.h:105: error: implicit declaration of function 'page_cache_release'
Signed-off-by: Michal Simek <monstr@monstr.eu>
-rw-r--r-- | arch/microblaze/include/asm/tlb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/tlb.h b/arch/microblaze/include/asm/tlb.h index e8abd4a0349c..8aa97817cc8c 100644 --- a/arch/microblaze/include/asm/tlb.h +++ b/arch/microblaze/include/asm/tlb.h @@ -13,6 +13,7 @@ #define tlb_flush(tlb) flush_tlb_mm((tlb)->mm) +#include <linux/pagemap.h> #include <asm-generic/tlb.h> #ifdef CONFIG_MMU |