You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2020/10/02 16:22:10 UTC

[incubator-nuttx] branch master updated: tiva/cc13xx: Fix nxstyle warnings

This is an automated email from the ASF dual-hosted git repository.

acassis 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 8a1f4db  tiva/cc13xx: Fix nxstyle warnings
8a1f4db is described below

commit 8a1f4db2e1dd38abfbd50d3aaa10dd1631959356
Author: Nathan Hartman <59...@users.noreply.github.com>
AuthorDate: Fri Oct 2 11:15:47 2020 -0400

    tiva/cc13xx: Fix nxstyle warnings
    
    arch/arm/src/tiva/cc13xx/cc13xx_start.c:
    
        * Fix nxstyle warnings. No functional changes.
---
 arch/arm/src/tiva/cc13xx/cc13xx_start.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/arch/arm/src/tiva/cc13xx/cc13xx_start.c b/arch/arm/src/tiva/cc13xx/cc13xx_start.c
index c55121a..b7cbfd9 100644
--- a/arch/arm/src/tiva/cc13xx/cc13xx_start.c
+++ b/arch/arm/src/tiva/cc13xx/cc13xx_start.c
@@ -131,7 +131,8 @@ void cc13xx_trim_device(void);
  *       done, the processor reserves space on the stack for the FP state,
  *       but does not save that state information to the stack.
  *
- *  Software must not change the value of the ASPEN bit or LSPEN bit while either:
+ *  Software must not change the value of the ASPEN bit or LSPEN bit while
+ *  either:
  *   - the CPACR permits access to CP10 and CP11, that give access to the FP
  *     extension, or
  *   - the CONTROL.FPCA bit is set to 1
@@ -224,7 +225,9 @@ void __start(void)
 #endif
   uint32_t *dest;
 
-  /* Perform the necessary trim of the device which is not done in boot code. */
+  /* Perform the necessary trim of the device which is not done in boot
+   * code.
+   */
 
   cc13xx_trim_device();
 
@@ -242,7 +245,9 @@ void __start(void)
   tiva_gpio_enablepwr();
   tiva_gpio_enableclk();
 
-  /* Configure the UART so that we can get debug output as soon as possible */
+  /* Configure the UART so that we can get debug output as soon as
+   * possible
+   */
 
   tiva_lowsetup();
   tiva_fpuconfig();
@@ -296,7 +301,7 @@ void __start(void)
   showprogress('F');
 
 #ifdef CONFIG_TIVA_EEPROM
-  /*Initialize the EEPROM */
+  /* Initialize the EEPROM */
 
   tiva_eeprom_initialize();
   showprogress('G');