diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-09-17 23:26:44 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-09-17 23:26:44 +0900 |
commit | 2194478157127d52338be96ac9436dc54005816a (patch) | |
tree | bc94666802f2e3205d81bcb94ed53ccdf435f0c3 /arch/sh/Kconfig | |
parent | b406efefd5246a67c691fd79871e65ce8f3f91ff (diff) | |
download | blackbird-obmc-linux-2194478157127d52338be96ac9436dc54005816a.tar.gz blackbird-obmc-linux-2194478157127d52338be96ac9436dc54005816a.zip |
sh: HAVE_IOREMAP_PROT depends on MMU.
HAVE_IOREMAP_PROT enables an unconditional reference to
generic_access_phys(), which remains undefined in the nommu case.
As there's no point in supporting this there anyways, simply fix
up the dependency.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/Kconfig')
-rw-r--r-- | arch/sh/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index 18a1cc8a6aa3..adef42cd507f 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig @@ -12,7 +12,7 @@ config SUPERH select HAVE_IDE select HAVE_OPROFILE select HAVE_GENERIC_DMA_COHERENT - select HAVE_IOREMAP_PROT + select HAVE_IOREMAP_PROT if MMU help The SuperH is a RISC processor targeted for use in embedded systems and consumer electronics; it was also used in the Sega Dreamcast |