diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-06-06 19:37:52 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-06-10 10:18:32 +0200 |
commit | 9f1f118035b2d28bb741844537b9ee87705b4c6e (patch) | |
tree | b94bff9ea8ee2934664c0b1d3f3546c648cb065f /arch/m68k/Kconfig.cpu | |
parent | 5df58f3aac58bb0f08fa205a006c6b7840cd7ac4 (diff) | |
download | linux-stable-9f1f118035b2d28bb741844537b9ee87705b4c6e.tar.gz linux-stable-9f1f118035b2d28bb741844537b9ee87705b4c6e.tar.bz2 linux-stable-9f1f118035b2d28bb741844537b9ee87705b4c6e.zip |
m68k: Introduce config option CPU_HAS_NO_UNALIGNED
Use CONFIG_CPU_HAS_NO_UNALIGNED instead of open coding CONFIG_M68000 ||
CONFIG_COLDFIRE
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Greg Ungerer<gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/Kconfig.cpu')
-rw-r--r-- | arch/m68k/Kconfig.cpu | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/m68k/Kconfig.cpu b/arch/m68k/Kconfig.cpu index 6cd8c1a32893..c4ed65081475 100644 --- a/arch/m68k/Kconfig.cpu +++ b/arch/m68k/Kconfig.cpu @@ -27,6 +27,7 @@ config COLDFIRE select ARCH_HAVE_CUSTOM_GPIO_H select CPU_HAS_NO_BITFIELDS select CPU_HAS_NO_MULDIV64 + select CPU_HAS_NO_UNALIGNED select GENERIC_CSUM endchoice @@ -37,6 +38,7 @@ config M68000 bool select CPU_HAS_NO_BITFIELDS select CPU_HAS_NO_MULDIV64 + select CPU_HAS_NO_UNALIGNED select GENERIC_CSUM help The Freescale (was Motorola) 68000 CPU is the first generation of @@ -366,6 +368,9 @@ config CPU_HAS_NO_BITFIELDS config CPU_HAS_NO_MULDIV64 bool +config CPU_HAS_NO_UNALIGNED + bool + config CPU_HAS_ADDRESS_SPACES bool |