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

xiaoxiang pushed a commit to branch releases/12.9
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/releases/12.9 by this push:
     new 2da612ccaf arch/arm/imx6: fix missed comma
2da612ccaf is described below

commit 2da612ccaf395f6221f472e4fa21cfc842dcc318
Author: buxiasen <buxia...@xiaomi.com>
AuthorDate: Wed Apr 2 16:26:54 2025 +0800

    arch/arm/imx6: fix missed comma
    
    Will Compile error if enable IMX6_UART2..5
    
    Signed-off-by: buxiasen <buxia...@xiaomi.com>
---
 arch/arm/src/imx6/imx_serial.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/src/imx6/imx_serial.c b/arch/arm/src/imx6/imx_serial.c
index ae2948c90c..f644d14f89 100644
--- a/arch/arm/src/imx6/imx_serial.c
+++ b/arch/arm/src/imx6/imx_serial.c
@@ -327,7 +327,7 @@ static struct imx_uart_s g_uart2priv =
   .baud           = CONFIG_UART2_BAUD,
   .irq            = IMX_IRQ_UART2,
   .parity         = CONFIG_UART2_PARITY,
-  .lock           = SP_UNLOCKED
+  .lock           = SP_UNLOCKED,
   .bits           = CONFIG_UART2_BITS,
   .stopbits2      = CONFIG_UART2_2STOP,
 };
@@ -356,7 +356,7 @@ static struct imx_uart_s g_uart3priv =
   .baud           = IMX_UART3_VBASE,
   .irq            = IMX_IRQ_UART3,
   .parity         = CONFIG_UART3_PARITY,
-  .lock           = SP_UNLOCKED
+  .lock           = SP_UNLOCKED,
   .bits           = CONFIG_UART3_BITS,
   .stopbits2      = CONFIG_UART3_2STOP,
 };
@@ -385,7 +385,7 @@ static struct imx_uart_s g_uart4priv =
   .baud           = IMX_UART4_VBASE,
   .irq            = IMX_IRQ_UART4,
   .parity         = CONFIG_UART4_PARITY,
-  .lock           = SP_UNLOCKED
+  .lock           = SP_UNLOCKED,
   .bits           = CONFIG_UART4_BITS,
   .stopbits2      = CONFIG_UART4_2STOP,
 };
@@ -414,7 +414,7 @@ static struct imx_uart_s g_uart5priv =
   .baud           = IMX_UART5_VBASE,
   .irq            = IMX_IRQ_UART5,
   .parity         = CONFIG_UART5_PARITY,
-  .lock           = SP_UNLOCKED
+  .lock           = SP_UNLOCKED,
   .bits           = CONFIG_UART5_BITS,
   .stopbits2      = CONFIG_UART5_2STOP,
 };

Reply via email to