This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push: new 763aae8 arch/stm32: Fix nxstyle errors 763aae8 is described below commit 763aae815548083e02adfb0e11c959620e000832 Author: Nathan Hartman <59230071+hartmannat...@users.noreply.github.com> AuthorDate: Tue Dec 29 09:27:21 2020 -0500 arch/stm32: Fix nxstyle errors arch/arm/src/stm32/stm32_rtc.h: * Fix nxstyle issues. --- arch/arm/src/stm32/stm32_rtc.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/arch/arm/src/stm32/stm32_rtc.h b/arch/arm/src/stm32/stm32_rtc.h index 2a7b848..3749430 100644 --- a/arch/arm/src/stm32/stm32_rtc.h +++ b/arch/arm/src/stm32/stm32_rtc.h @@ -4,7 +4,8 @@ * Copyright (C) 2011 Uros Platise. All rights reserved. * Copyright (C) 2011-2013, 2015-2018 Gregory Nutt. All rights reserved. * Author: Uros Platise <uros.plat...@isotel.eu> (Original for the F1) - * Gregory Nutt <gn...@nuttx.org> (On-going support and development) + * Gregory Nutt <gn...@nuttx.org> (On-going support and + * development) * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -46,17 +47,17 @@ #include "chip.h" -/* The STM32 F1 has a simple battery-backed counter for its RTC and has a separate - * block for the BKP registers. +/* The STM32 F1 has a simple battery-backed counter for its RTC and has a + * separate block for the BKP registers. */ #if defined(CONFIG_STM32_STM32F10XX) # include "hardware/stm32_rtc.h" # include "hardware/stm32_bkp.h" -/* The other families use a more traditional Realtime Clock/Calendar (RTCC) with - * broken-out data/time in BCD format. The backup registers are integrated into - * the RTCC in these families. +/* The other families use a more traditional Realtime Clock/Calendar (RTCC) + * with broken-out data/time in BCD format. The backup registers are + * integrated into the RTCC in these families. */ #elif defined(CONFIG_STM32_STM32L15XX) || defined(CONFIG_STM32_STM32F20XX) || \ @@ -138,7 +139,7 @@ extern "C" #endif /**************************************************************************** - * Public Functions + * Public Function Prototypes ****************************************************************************/ /****************************************************************************