diff options
author | Greg Ungerer <gerg@uclinux.org> | 2011-10-19 02:27:30 -0400 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2011-12-24 06:47:57 -0500 |
commit | 5717a02becd2f5dae8b11cb5808de4e5369d607c (patch) | |
tree | 829e1e28b20ea1284cbaabe2c3e3083a94d143fd /arch/m68k/Kconfig.cpu | |
parent | d25ba98afce7c87afa39f553a3ff8effed87db03 (diff) |
m68k: selection of GENERIC_ATOMIC64 is not MMU specific
The selection of the CONFIG_GENERIC_ATOMIC64 option is not specific to the
MMU being present and enabled. It is a property of certain CPU families.
So select it based on those CPU types being selected.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/Kconfig.cpu')
-rw-r--r-- | arch/m68k/Kconfig.cpu | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/m68k/Kconfig.cpu b/arch/m68k/Kconfig.cpu index e632b2d12106..9af9e68c303b 100644 --- a/arch/m68k/Kconfig.cpu +++ b/arch/m68k/Kconfig.cpu | |||
@@ -33,6 +33,7 @@ config COLDFIRE | |||
33 | config M68020 | 33 | config M68020 |
34 | bool "68020 support" | 34 | bool "68020 support" |
35 | depends on MMU | 35 | depends on MMU |
36 | select GENERIC_ATOMIC64 | ||
36 | help | 37 | help |
37 | If you anticipate running this kernel on a computer with a MC68020 | 38 | If you anticipate running this kernel on a computer with a MC68020 |
38 | processor, say Y. Otherwise, say N. Note that the 68020 requires a | 39 | processor, say Y. Otherwise, say N. Note that the 68020 requires a |
@@ -42,6 +43,7 @@ config M68020 | |||
42 | config M68030 | 43 | config M68030 |
43 | bool "68030 support" | 44 | bool "68030 support" |
44 | depends on MMU && !MMU_SUN3 | 45 | depends on MMU && !MMU_SUN3 |
46 | select GENERIC_ATOMIC64 | ||
45 | help | 47 | help |
46 | If you anticipate running this kernel on a computer with a MC68030 | 48 | If you anticipate running this kernel on a computer with a MC68030 |
47 | processor, say Y. Otherwise, say N. Note that a MC68EC030 will not | 49 | processor, say Y. Otherwise, say N. Note that a MC68EC030 will not |
@@ -50,6 +52,7 @@ config M68030 | |||
50 | config M68040 | 52 | config M68040 |
51 | bool "68040 support" | 53 | bool "68040 support" |
52 | depends on MMU && !MMU_SUN3 | 54 | depends on MMU && !MMU_SUN3 |
55 | select GENERIC_ATOMIC64 | ||
53 | help | 56 | help |
54 | If you anticipate running this kernel on a computer with a MC68LC040 | 57 | If you anticipate running this kernel on a computer with a MC68LC040 |
55 | or MC68040 processor, say Y. Otherwise, say N. Note that an | 58 | or MC68040 processor, say Y. Otherwise, say N. Note that an |
@@ -59,6 +62,7 @@ config M68040 | |||
59 | config M68060 | 62 | config M68060 |
60 | bool "68060 support" | 63 | bool "68060 support" |
61 | depends on MMU && !MMU_SUN3 | 64 | depends on MMU && !MMU_SUN3 |
65 | select GENERIC_ATOMIC64 | ||
62 | help | 66 | help |
63 | If you anticipate running this kernel on a computer with a MC68060 | 67 | If you anticipate running this kernel on a computer with a MC68060 |
64 | processor, say Y. Otherwise, say N. | 68 | processor, say Y. Otherwise, say N. |