From a573617f33acf6dd07bf3ec6214534094d4be805 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 3 Apr 2016 12:38:02 -0600 Subject: [PATCH] Costmetic renaming --- arch/arm/src/stm32/stm32f40xxx_rtcc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/src/stm32/stm32f40xxx_rtcc.c b/arch/arm/src/stm32/stm32f40xxx_rtcc.c index 2bdd23e1ee..1ad1d5ca60 100644 --- a/arch/arm/src/stm32/stm32f40xxx_rtcc.c +++ b/arch/arm/src/stm32/stm32f40xxx_rtcc.c @@ -607,7 +607,7 @@ static void rtc_resume(void) } /************************************************************************************ - * Name: stm32_exti_rtc_alarm_cb_handler + * Name: stm32_rtc_alarm_handler * * Description: * RTC ALARM interrupt service routine through the EXTI line @@ -621,7 +621,7 @@ static void rtc_resume(void) * ************************************************************************************/ -static int stm32_exti_rtc_alarm_cb_handler(int irq, void *context) +static int stm32_rtc_alarm_handler(int irq, void *context) { FAR struct alm_cbinfo_s *cbinfo; alm_callback_t cb; @@ -1067,7 +1067,7 @@ int up_rtc_initialize(void) * 3. Configure the RTC to generate RTC alarms (Alarm A or Alarm B). */ - stm32_exti_alarm(true, false , true, stm32_exti_rtc_alarm_cb_handler); + stm32_exti_alarm(true, false, true, stm32_rtc_alarm_handler); #endif g_rtc_enabled = true;