aboutsummaryrefslogtreecommitdiffstats
path: root/mm/hugetlb.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-07-30 02:18:26 +0900
committerPaul Mundt <lethal@linux-sh.org>2008-07-30 02:18:26 +0900
commit7cb93181629c613ee2b8f4ffe3446f8003074842 (patch)
tree3665bf0e793dfa63020514de8c549a65430c5ab0 /mm/hugetlb.c
parentvideo: Fix up hp6xx driver build regressions. (diff)
downloadlinux-dev-7cb93181629c613ee2b8f4ffe3446f8003074842.tar.xz
linux-dev-7cb93181629c613ee2b8f4ffe3446f8003074842.zip
mm/hugetlb.c must #include <asm/io.h>
This patch fixes the following build error on sh caused by commit aa888a74977a8f2120ae9332376e179c39a6b07d (hugetlb: support larger than MAX_ORDER): <-- snip --> ... CC mm/hugetlb.o /home/bunk/linux/kernel-2.6/git/linux-2.6/mm/hugetlb.c: In function 'alloc_bootmem_huge_page': /home/bunk/linux/kernel-2.6/git/linux-2.6/mm/hugetlb.c:958: error: implicit declaration of function 'virt_to_phys' make[2]: *** [mm/hugetlb.o] Error 1 <-- snip --> Reported-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'mm/hugetlb.c')
-rw-r--r--mm/hugetlb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index 3be79dc18c5c..b3c78640b629 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -16,7 +16,7 @@
#include <linux/mutex.h>
#include <linux/bootmem.h>
#include <linux/sysfs.h>
-
+#include <asm/io.h>
#include <asm/page.h>
#include <asm/pgtable.h>