diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /drivers/rtc/mcfrtc.c | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'drivers/rtc/mcfrtc.c')
| -rw-r--r-- | drivers/rtc/mcfrtc.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/rtc/mcfrtc.c b/drivers/rtc/mcfrtc.c index c2af19798..979c46651 100644 --- a/drivers/rtc/mcfrtc.c +++ b/drivers/rtc/mcfrtc.c @@ -32,7 +32,7 @@  #undef RTC_DEBUG -#ifndef CFG_MCFRTC_BASE +#ifndef CONFIG_SYS_MCFRTC_BASE  #error RTC_BASE is not defined!  #endif @@ -41,7 +41,7 @@  int rtc_get(struct rtc_time *tmp)  { -	volatile rtc_t *rtc = (rtc_t *) (CFG_MCFRTC_BASE); +	volatile rtc_t *rtc = (rtc_t *) (CONFIG_SYS_MCFRTC_BASE);  	int rtc_days, rtc_hrs, rtc_mins;  	int tim; @@ -70,7 +70,7 @@ int rtc_get(struct rtc_time *tmp)  int rtc_set(struct rtc_time *tmp)  { -	volatile rtc_t *rtc = (rtc_t *) (CFG_MCFRTC_BASE); +	volatile rtc_t *rtc = (rtc_t *) (CONFIG_SYS_MCFRTC_BASE);  	static int month_days[12] = {  		31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 @@ -112,7 +112,7 @@ int rtc_set(struct rtc_time *tmp)  void rtc_reset(void)  { -	volatile rtc_t *rtc = (rtc_t *) (CFG_MCFRTC_BASE); +	volatile rtc_t *rtc = (rtc_t *) (CONFIG_SYS_MCFRTC_BASE);  	if ((rtc->cr & RTC_CR_EN) == 0) {  		printf("real-time-clock was stopped. Now starting...\n"); |