Skip to content
Snippets Groups Projects
Commit bc3ccb13 authored by TsiChung Liew's avatar TsiChung Liew Committed by John Rigby
Browse files

ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC


Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
clock module in cpu/<cf arch>/cpu_init.c

Signed-off-by: default avatarTsiChung Liew <Tsi-Chung.Liew@freescale.com>
parent f94945b5
No related branches found
No related tags found
No related merge requests found
...@@ -106,7 +106,7 @@ void cpu_init_f(void) ...@@ -106,7 +106,7 @@ void cpu_init_f(void)
*/ */
int cpu_init_r(void) int cpu_init_r(void)
{ {
#ifdef CONFIG_MCFTMR #ifdef CONFIG_MCFRTC
volatile rtc_t *rtc = (volatile rtc_t *)(CFG_MCFRTC_BASE); volatile rtc_t *rtc = (volatile rtc_t *)(CFG_MCFRTC_BASE);
volatile rtcex_t *rtcex = (volatile rtcex_t *)&rtc->extended; volatile rtcex_t *rtcex = (volatile rtcex_t *)&rtc->extended;
u32 oscillator = CFG_RTC_OSCILLATOR; u32 oscillator = CFG_RTC_OSCILLATOR;
......
...@@ -110,7 +110,7 @@ void cpu_init_f(void) ...@@ -110,7 +110,7 @@ void cpu_init_f(void)
*/ */
int cpu_init_r(void) int cpu_init_r(void)
{ {
#ifdef CONFIG_MCFTMR #ifdef CONFIG_MCFRTC
volatile rtc_t *rtc = (volatile rtc_t *)(CFG_MCFRTC_BASE); volatile rtc_t *rtc = (volatile rtc_t *)(CFG_MCFRTC_BASE);
volatile rtcex_t *rtcex = (volatile rtcex_t *)&rtc->extended; volatile rtcex_t *rtcex = (volatile rtcex_t *)&rtc->extended;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment