This is an automated email from the ASF dual-hosted git repository.
aguettouche 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 08979d6 stm32/stm32_bbsram.c: Fix nxstyle errors
08979d6 is described below
commit 08979d6e1a2699500873e20fc2c9886a12fee6cc
Author: Nathan Hartman <[email protected]>
AuthorDate: Sun Nov 15 13:31:58 2020 -0500
stm32/stm32_bbsram.c: Fix nxstyle errors
arch/arm/src/stm32/stm32_bbsram.h:
* Fix nxstyle errors.
---
arch/arm/src/stm32/stm32_bbsram.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/arch/arm/src/stm32/stm32_bbsram.h
b/arch/arm/src/stm32/stm32_bbsram.h
index 2e1b602..ba74579 100644
--- a/arch/arm/src/stm32/stm32_bbsram.h
+++ b/arch/arm/src/stm32/stm32_bbsram.h
@@ -91,7 +91,7 @@ struct bbsramd_s
{
uint8_t flags; /* The crc is valid and the file was closed */
uint8_t fileno; /* The minor number */
- uint16_t len; /* Total Bytes in this file*/
+ uint16_t len; /* Total Bytes in this file */
struct timespec lastwrite; /* Last write time */
};
@@ -111,6 +111,7 @@ extern "C"
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
+
/****************************************************************************
* Function: stm32_bbsraminitialize
*
@@ -151,7 +152,7 @@ int stm32_bbsraminitialize(char *devpath, int *sizes);
*
* Assumptions:
*
-****************************************************************************/
+*****************************************************************************/
#if defined(CONFIG_STM32_SAVE_CRASHDUMP)
int stm32_bbsram_savepanic(int fileno, uint8_t *context, int length);