diff options
author | Yoshinori Sato <ysato@users.sourceforge.jp> | 2006-09-27 04:25:07 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-09-27 04:25:07 -0400 |
commit | a2d1a5fae6296c2a3ac1aaa982c95464c46c0585 (patch) | |
tree | fa704906d368f6ab0f03b164d5071992a4029a9a /arch/sh/mm | |
parent | 0b8929354cdeddb17e81bfda903812c9adfd0b67 (diff) |
sh: __addr_ok() and other misc nommu fixups.
A few more outstanding nommu fixups..
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm')
-rw-r--r-- | arch/sh/mm/Kconfig | 2 | ||||
-rw-r--r-- | arch/sh/mm/Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/mm/Kconfig b/arch/sh/mm/Kconfig index f25903aa607b..bed697c0dc19 100644 --- a/arch/sh/mm/Kconfig +++ b/arch/sh/mm/Kconfig | |||
@@ -194,7 +194,7 @@ config MEMORY_SIZE | |||
194 | 194 | ||
195 | config 32BIT | 195 | config 32BIT |
196 | bool "Support 32-bit physical addressing through PMB" | 196 | bool "Support 32-bit physical addressing through PMB" |
197 | depends on CPU_SH4A | 197 | depends on CPU_SH4A && MMU |
198 | default y | 198 | default y |
199 | help | 199 | help |
200 | If you say Y here, physical addressing will be extended to | 200 | If you say Y here, physical addressing will be extended to |
diff --git a/arch/sh/mm/Makefile b/arch/sh/mm/Makefile index 87a7c07265c0..da37d86e65eb 100644 --- a/arch/sh/mm/Makefile +++ b/arch/sh/mm/Makefile | |||
@@ -6,7 +6,7 @@ obj-y := init.o extable.o consistent.o | |||
6 | 6 | ||
7 | obj-$(CONFIG_CPU_SH2) += cache-sh2.o | 7 | obj-$(CONFIG_CPU_SH2) += cache-sh2.o |
8 | obj-$(CONFIG_CPU_SH3) += cache-sh3.o | 8 | obj-$(CONFIG_CPU_SH3) += cache-sh3.o |
9 | obj-$(CONFIG_CPU_SH4) += cache-sh4.o pg-sh4.o | 9 | obj-$(CONFIG_CPU_SH4) += cache-sh4.o |
10 | 10 | ||
11 | obj-$(CONFIG_DMA_PAGE_OPS) += pg-dma.o | 11 | obj-$(CONFIG_DMA_PAGE_OPS) += pg-dma.o |
12 | obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o | 12 | obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o |
@@ -19,7 +19,7 @@ obj-y += $(mmu-y) | |||
19 | 19 | ||
20 | ifdef CONFIG_MMU | 20 | ifdef CONFIG_MMU |
21 | obj-$(CONFIG_CPU_SH3) += tlb-sh3.o | 21 | obj-$(CONFIG_CPU_SH3) += tlb-sh3.o |
22 | obj-$(CONFIG_CPU_SH4) += tlb-sh4.o | 22 | obj-$(CONFIG_CPU_SH4) += tlb-sh4.o pg-sh4.o |
23 | obj-$(CONFIG_SH7705_CACHE_32KB) += pg-sh7705.o | 23 | obj-$(CONFIG_SH7705_CACHE_32KB) += pg-sh7705.o |
24 | endif | 24 | endif |
25 | 25 | ||