Commit 54b03d13 authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] m68knommu: add ColdFire 5208 setup support

Add setup support for the new Freescale 5208 ColdFire processor.
(Also fixed a little typo in there, "UNKOWN" -> "UNKNOWN").
Patch originally from Matt Waddel (from code originally written by
Mike Lavender).
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent b0020e3f
...@@ -107,6 +107,9 @@ void (*mach_power_off)( void ) = NULL; ...@@ -107,6 +107,9 @@ void (*mach_power_off)( void ) = NULL;
#if defined(CONFIG_M5206e) #if defined(CONFIG_M5206e)
#define CPU "COLDFIRE(m5206e)" #define CPU "COLDFIRE(m5206e)"
#endif #endif
#if defined(CONFIG_M520x)
#define CPU "COLDFIRE(m520x)"
#endif
#if defined(CONFIG_M523x) #if defined(CONFIG_M523x)
#define CPU "COLDFIRE(m523x)" #define CPU "COLDFIRE(m523x)"
#endif #endif
...@@ -132,7 +135,7 @@ void (*mach_power_off)( void ) = NULL; ...@@ -132,7 +135,7 @@ void (*mach_power_off)( void ) = NULL;
#define CPU "COLDFIRE(m5407)" #define CPU "COLDFIRE(m5407)"
#endif #endif
#ifndef CPU #ifndef CPU
#define CPU "UNKOWN" #define CPU "UNKNOWN"
#endif #endif
/* (es) */ /* (es) */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment