
On 12/16/2010 11:17 AM, Jason Liu wrote:
Add initial support for Freescale MX53 processor,
- Add the iomux support and the pin definition,
- Add the regs definition, clean up some unused def from mx51,
- Add the low level init support, make use the freq input of setup_pll macro
Changes for v2: --address some comments of Stefano Babic,
Please add always the version number in the e-mail subject, if it is a resubmission, so we can know there is a previous version. Please add a small list with all changes, as I cannot know which of them you implemented.
diff --git a/arch/arm/cpu/armv7/mx5/soc.c b/arch/arm/cpu/armv7/mx5/soc.c index 2900119..f5e0283 100644 --- a/arch/arm/cpu/armv7/mx5/soc.c +++ b/arch/arm/cpu/armv7/mx5/soc.c @@ -35,6 +35,8 @@
#if defined(CONFIG_MX51) #define CPU_TYPE 0x51000 +#elif defined(CONFIG_MX53) +#define CPU_TYPE 0x53000 #else #error "CPU_TYPE not defined" #endif
In the previous discussion on first submit it seemd to me you agreed to change this part, as we have already CONFIG_MX51 and CONFIG_MX53 and additional defines are not needed. However, you resubmit the same code.
Best regards, Stefano Babic