diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-09-21 08:51:43 +0100 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-09-21 08:51:43 +0100 |
commit | 0000f0b1bc9aa340356a8dcdb9e8b1dbbaf0afcb (patch) | |
tree | 456a7fd9a0c0ba8e538abe5bb41528da80070947 /include/asm-h8300 | |
parent | 5daf3033aa4fc5ec0535816d8a8e94874160482e (diff) | |
download | linux-3.10-0000f0b1bc9aa340356a8dcdb9e8b1dbbaf0afcb.tar.gz linux-3.10-0000f0b1bc9aa340356a8dcdb9e8b1dbbaf0afcb.tar.bz2 linux-3.10-0000f0b1bc9aa340356a8dcdb9e8b1dbbaf0afcb.zip |
Fix H8300 exported headers.
Just clean up asm/page.h
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'include/asm-h8300')
-rw-r--r-- | include/asm-h8300/page.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/asm-h8300/page.h b/include/asm-h8300/page.h index d673077d2fd..3b4f2903f91 100644 --- a/include/asm-h8300/page.h +++ b/include/asm-h8300/page.h @@ -1,6 +1,7 @@ #ifndef _H8300_PAGE_H #define _H8300_PAGE_H +#ifdef __KERNEL__ /* PAGE_SHIFT determines the page size */ @@ -8,8 +9,6 @@ #define PAGE_SIZE (1UL << PAGE_SHIFT) #define PAGE_MASK (~(PAGE_SIZE-1)) -#ifdef __KERNEL__ - #include <asm/setup.h> #ifndef __ASSEMBLY__ @@ -76,9 +75,9 @@ extern unsigned long memory_end; #endif /* __ASSEMBLY__ */ -#endif /* __KERNEL__ */ - #include <asm-generic/memory_model.h> #include <asm-generic/page.h> +#endif /* __KERNEL__ */ + #endif /* _H8300_PAGE_H */ |