You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/01/04 02:30:51 UTC

[incubator-nuttx] branch master updated: arch/stm32h7: Fix nxstyle errors

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 ec0b2f0  arch/stm32h7: Fix nxstyle errors
ec0b2f0 is described below

commit ec0b2f063c711ee2eca760aeb562412ab79118a5
Author: Nathan Hartman <59...@users.noreply.github.com>
AuthorDate: Sun Jan 3 19:52:01 2021 -0500

    arch/stm32h7: Fix nxstyle errors
    
    arch/arm/src/stm32h7/stm32_bbsram.h:
    
        * Fix nxstyle issues.
---
 arch/arm/src/stm32h7/stm32_bbsram.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/src/stm32h7/stm32_bbsram.h b/arch/arm/src/stm32h7/stm32_bbsram.h
index 060fb66..0b0d242 100644
--- a/arch/arm/src/stm32h7/stm32_bbsram.h
+++ b/arch/arm/src/stm32h7/stm32_bbsram.h
@@ -86,7 +86,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 */
 };
 
@@ -147,7 +147,7 @@ int stm32_bbsraminitialize(char *devpath, int *sizes);
 *
 * Assumptions:
 *
-****************************************************************************/
+*****************************************************************************/
 
 #if defined(CONFIG_STM32H7_SAVE_CRASHDUMP)
 int stm32_bbsram_savepanic(int fileno, uint8_t *context, int length);