diff options
author | Greg Ungerer <gerg@uclinux.org> | 2010-11-01 22:05:29 -0400 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2011-01-05 00:19:17 -0500 |
commit | 5b2e6555ac3eb58a4e5eb5020471df08f0c42c01 (patch) | |
tree | 38514c0431fce8567a5ae74ea76e99ef910891d9 /arch/m68knommu/Kconfig | |
parent | 9c68015b149d45a35114b4a1ed44c21fa66bc430 (diff) |
m68knommu: make Coldfire 548x support more generic
The ColdFire 547x family of processors is very similar to the ColdFire
548x series. Almost all of the support for them is the same. Make the
code supporting the 548x more gneric, so it will be capable of
supporting both families.
For the most part this is a renaming excerise to make the support
code more obviously apply to both families.
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68knommu/Kconfig')
-rw-r--r-- | arch/m68knommu/Kconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/m68knommu/Kconfig b/arch/m68knommu/Kconfig index fa9f746cf4ae..060f142a1e20 100644 --- a/arch/m68knommu/Kconfig +++ b/arch/m68knommu/Kconfig | |||
@@ -181,9 +181,14 @@ config M527x | |||
181 | select GENERIC_CLOCKEVENTS | 181 | select GENERIC_CLOCKEVENTS |
182 | default y | 182 | default y |
183 | 183 | ||
184 | config M54xx | ||
185 | bool | ||
186 | depends on M548x | ||
187 | default y | ||
188 | |||
184 | config COLDFIRE | 189 | config COLDFIRE |
185 | bool | 190 | bool |
186 | depends on (M5206 || M5206e || M520x || M523x || M5249 || M527x || M5272 || M528x || M5307 || M532x || M5407 || M548x) | 191 | depends on (M5206 || M5206e || M520x || M523x || M5249 || M527x || M5272 || M528x || M5307 || M532x || M5407 || M54xx) |
187 | select GENERIC_GPIO | 192 | select GENERIC_GPIO |
188 | select ARCH_REQUIRE_GPIOLIB | 193 | select ARCH_REQUIRE_GPIOLIB |
189 | default y | 194 | default y |