Merge branch 'master' of https://bitbucket.org/nuttx/arch
This commit is contained in:
commit
d46156c2ba
@ -681,7 +681,7 @@ static int rtchw_check_alrawf(void)
|
||||
{
|
||||
volatile uint32_t timeout;
|
||||
uint32_t regval;
|
||||
int ret_val = -ETIMEDOUT;
|
||||
int ret = -ETIMEDOUT;
|
||||
|
||||
/* Check RTC_ISR ALRAWF for access to alarm register,
|
||||
* Can take 2 RTCCLK cycles or timeout
|
||||
@ -693,19 +693,19 @@ static int rtchw_check_alrawf(void)
|
||||
regval = getreg32(STM32_RTC_ISR);
|
||||
if ((regval & RTC_ISR_ALRAWF) != 0)
|
||||
{
|
||||
ret_val = OK;
|
||||
ret = OK;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return ret_val;
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int rtchw_check_alrbwf(void)
|
||||
{
|
||||
volatile uint32_t timeout;
|
||||
uint32_t regval;
|
||||
int ret_val = -ETIMEDOUT;
|
||||
int ret = -ETIMEDOUT;
|
||||
|
||||
/* Check RTC_ISR ALRAWF for access to alarm register,
|
||||
* can take 2 RTCCLK cycles or timeout
|
||||
@ -717,12 +717,12 @@ static int rtchw_check_alrbwf(void)
|
||||
regval = getreg32(STM32_RTC_ISR);
|
||||
if ((regval & RTC_ISR_ALRBWF) != 0)
|
||||
{
|
||||
ret_val = OK;
|
||||
ret = OK;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return ret_val;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/************************************************************************************
|
||||
@ -844,14 +844,14 @@ static int alarm_update_rel(struct up_alarm_update_s *alm_setup, struct tm *ptp
|
||||
uint32_t alm_hr;
|
||||
uint32_t tmp1;
|
||||
uint32_t tmp2;
|
||||
int ret_val = OK;
|
||||
int ret = OK;
|
||||
|
||||
/* Error checking */
|
||||
|
||||
alm_min = alm_setup->param.alm_minutes;
|
||||
if (MAX_RTC_ALARM_REL_MINUTES < alm_min)
|
||||
{
|
||||
ret_val = ERROR;
|
||||
ret = ERROR;
|
||||
rtcvdbg("error min too large %d\n", alm_min);
|
||||
goto stm32_alarm_updt_rel_return;
|
||||
}
|
||||
@ -900,7 +900,7 @@ static int alarm_update_rel(struct up_alarm_update_s *alm_setup, struct tm *ptp
|
||||
}
|
||||
|
||||
stm32_alarm_updt_rel_return:
|
||||
return ret_val;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/************************************************************************************
|
||||
@ -1404,9 +1404,9 @@ int up_rtc_settime(FAR const struct timespec *tp)
|
||||
|
||||
int stm32_rtc_ext_update(struct up_alarm_update_s *alm_setup)
|
||||
{
|
||||
int ret_val =ERROR;
|
||||
rtc_alarmreg_t alarmreg;
|
||||
struct tm tm_local;
|
||||
int ret = ERROR;
|
||||
|
||||
ASSERT(alm_setup);
|
||||
DEBUGASSERT(RTC_EXT_LAST > alm_setup->alm_type);
|
||||
@ -1415,7 +1415,7 @@ int stm32_rtc_ext_update(struct up_alarm_update_s *alm_setup)
|
||||
{
|
||||
case RTC_ALARMA_REL:
|
||||
case RTC_ALARMB_REL:
|
||||
ret_val = alarm_update_rel(alm_setup, &tm_local);
|
||||
ret = alarm_update_rel(alm_setup, &tm_local);
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -1423,7 +1423,7 @@ int stm32_rtc_ext_update(struct up_alarm_update_s *alm_setup)
|
||||
break;
|
||||
}
|
||||
|
||||
if (OK == ret_val)
|
||||
if (OK == ret)
|
||||
{
|
||||
rtc_dumptime(&tm_local, "new alarm time");
|
||||
alarmreg = rtc_reg_alrmr_bin2bcd(tm_local);
|
||||
@ -1440,7 +1440,7 @@ int stm32_rtc_ext_update(struct up_alarm_update_s *alm_setup)
|
||||
}
|
||||
}
|
||||
|
||||
return ret_val;
|
||||
return ret;
|
||||
}
|
||||
|
||||
/************************************************************************************
|
||||
@ -1459,7 +1459,7 @@ int stm32_rtc_ext_update(struct up_alarm_update_s *alm_setup)
|
||||
|
||||
int stm32_rtc_ext_set_cb(int rtc_ext_type, rtc_ext_cb_t callback)
|
||||
{
|
||||
int ret_val = OK;
|
||||
int ret = OK;
|
||||
|
||||
switch (rtc_ext_type)
|
||||
{
|
||||
@ -1472,11 +1472,11 @@ int stm32_rtc_ext_set_cb(int rtc_ext_type, rtc_ext_cb_t callback)
|
||||
break;
|
||||
|
||||
default:
|
||||
ret_val = ERROR;
|
||||
ret = ERROR;
|
||||
break;
|
||||
}
|
||||
|
||||
return ret_val;
|
||||
return ret;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user