diff options
Diffstat (limited to 'drivers/rtc/ds1337.c')
| -rw-r--r-- | drivers/rtc/ds1337.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/drivers/rtc/ds1337.c b/drivers/rtc/ds1337.c index 509f81ff7..58e3966ec 100644 --- a/drivers/rtc/ds1337.c +++ b/drivers/rtc/ds1337.c @@ -160,10 +160,10 @@ int rtc_set (struct rtc_time *tmp)   * SQW/INTB* pin and program it for 32,768 Hz output. Note that   * according to the datasheet, turning on the square wave output   * increases the current drain on the backup battery from about - * 600 nA to 2uA. Define CFG_RTC_DS1337_NOOSC if you wish to turn + * 600 nA to 2uA. Define CONFIG_SYS_RTC_DS1337_NOOSC if you wish to turn   * off the OSC output.   */ -#ifdef CFG_RTC_DS1337_NOOSC +#ifdef CONFIG_SYS_RTC_DS1337_NOOSC   #define RTC_DS1337_RESET_VAL \  	(RTC_CTL_BIT_INTCN | RTC_CTL_BIT_RS1 | RTC_CTL_BIT_RS2)  #else @@ -182,13 +182,13 @@ void rtc_reset (void)  static  uchar rtc_read (uchar reg)  { -	return (i2c_reg_read (CFG_I2C_RTC_ADDR, reg)); +	return (i2c_reg_read (CONFIG_SYS_I2C_RTC_ADDR, reg));  }  static void rtc_write (uchar reg, uchar val)  { -	i2c_reg_write (CFG_I2C_RTC_ADDR, reg, val); +	i2c_reg_write (CONFIG_SYS_I2C_RTC_ADDR, reg, val);  }  static unsigned bcd2bin (uchar n) |