aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/include/asm/unaligned.h
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2012-06-06 19:37:52 +0200
committerGeert Uytterhoeven <geert@linux-m68k.org>2012-06-10 10:18:32 +0200
commit9f1f118035b2d28bb741844537b9ee87705b4c6e (patch)
treeb94bff9ea8ee2934664c0b1d3f3546c648cb065f /arch/m68k/include/asm/unaligned.h
parentm68k: delay, muldi3 - Use CONFIG_CPU_HAS_NO_MULDIV64 (diff)
downloadlinux-dev-9f1f118035b2d28bb741844537b9ee87705b4c6e.tar.xz
linux-dev-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 '')
-rw-r--r--arch/m68k/include/asm/unaligned.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/include/asm/unaligned.h b/arch/m68k/include/asm/unaligned.h
index f4043ae63db1..2b3ca0bf7a0d 100644
--- a/arch/m68k/include/asm/unaligned.h
+++ b/arch/m68k/include/asm/unaligned.h
@@ -2,7 +2,7 @@
#define _ASM_M68K_UNALIGNED_H
-#if defined(CONFIG_COLDFIRE) || defined(CONFIG_M68000)
+#ifdef CONFIG_CPU_HAS_NO_UNALIGNED
#include <linux/unaligned/be_struct.h>
#include <linux/unaligned/le_byteshift.h>
#include <linux/unaligned/generic.h>
@@ -12,7 +12,7 @@
#else
/*
- * The m68k can do unaligned accesses itself.
+ * The m68k can do unaligned accesses itself.
*/
#include <linux/unaligned/access_ok.h>
#include <linux/unaligned/generic.h>