@@ -442,7 +442,6 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
442
442
LL_RTC_TimeTypeDef rtc_time ;
443
443
LL_RTC_DateTypeDef rtc_date ;
444
444
uint32_t real_year = timeptr -> tm_year + TM_YEAR_REF ;
445
- int err = 0 ;
446
445
447
446
if (real_year < RTC_YEAR_REF ) {
448
447
/* RTC does not support years before 2000 */
@@ -454,19 +453,10 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
454
453
return - EINVAL ;
455
454
}
456
455
457
- k_spinlock_key_t key = k_spin_lock (& data -> lock );
458
-
459
- LOG_DBG ("Setting clock" );
460
-
461
- #if RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION
462
- LL_PWR_EnableBkUpAccess ();
463
- #endif /* RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION */
464
-
465
456
/* Enter Init mode inside the LL_RTC_Time and Date Init functions */
466
457
rtc_time .Hours = bin2bcd (timeptr -> tm_hour );
467
458
rtc_time .Minutes = bin2bcd (timeptr -> tm_min );
468
459
rtc_time .Seconds = bin2bcd (timeptr -> tm_sec );
469
- LL_RTC_TIME_Init (RTC , LL_RTC_FORMAT_BCD , & rtc_time );
470
460
471
461
/* Set Date after Time to be sure the DR is correctly updated on stm32F2 serie. */
472
462
rtc_date .Year = bin2bcd ((real_year - RTC_YEAR_REF ));
@@ -476,6 +466,16 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
476
466
/* WeekDay sunday (tm_wday = 0) is not represented by the same value in hardware,
477
467
* all the other values are consistent with what is expected by hardware.
478
468
*/
469
+
470
+ LOG_DBG ("Setting clock" );
471
+
472
+ k_spinlock_key_t key = k_spin_lock (& data -> lock );
473
+
474
+ #if RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION
475
+ LL_PWR_EnableBkUpAccess ();
476
+ #endif /* RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION */
477
+
478
+ LL_RTC_TIME_Init (RTC , LL_RTC_FORMAT_BCD , & rtc_time );
479
479
LL_RTC_DATE_Init (RTC , LL_RTC_FORMAT_BCD , & rtc_date );
480
480
481
481
#if RTC_STM32_BACKUP_DOMAIN_WRITE_PROTECTION
@@ -492,8 +492,6 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
492
492
}
493
493
#endif /* CONFIG_SOC_SERIES_STM32F2X */
494
494
495
- k_spin_unlock (& data -> lock , key );
496
-
497
495
LOG_DBG ("Calendar set : %d/%d/%d - %dh%dm%ds" ,
498
496
LL_RTC_DATE_GetDay (RTC ),
499
497
LL_RTC_DATE_GetMonth (RTC ),
@@ -503,7 +501,9 @@ static int rtc_stm32_set_time(const struct device *dev, const struct rtc_time *t
503
501
LL_RTC_TIME_GetSecond (RTC )
504
502
);
505
503
506
- return err ;
504
+ k_spin_unlock (& data -> lock , key );
505
+
506
+ return 0 ;
507
507
}
508
508
509
509
static int rtc_stm32_get_time (const struct device * dev , struct rtc_time * timeptr )
0 commit comments