This is an automated email from Gerrit.

"Antonio Borneo <borneo.anto...@gmail.com>" just uploaded a new patch set to 
Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8200

-- gerrit

commit d0522a97d673f0c1e380bd91c9cc77d507814962
Author: Antonio Borneo <borneo.anto...@gmail.com>
Date:   Sun Apr 7 12:28:55 2024 +0200

    jtag: linuxgpiod: minor alignment to coding style
    
    Avoid double TAB in 'then' block by increasing indentation of the
    multi-line condition.
    
    Change-Id: I7f5a4437fe4f74228f1b0d98e5c5921af4fd36b8
    Signed-off-by: Antonio Borneo <borneo.anto...@gmail.com>

diff --git a/src/jtag/drivers/linuxgpiod.c b/src/jtag/drivers/linuxgpiod.c
index 2f3d644542..1926ed9ae6 100644
--- a/src/jtag/drivers/linuxgpiod.c
+++ b/src/jtag/drivers/linuxgpiod.c
@@ -378,12 +378,12 @@ static int linuxgpiod_init(void)
                        goto out_error;
                }
 
-               if (helper_get_line(ADAPTER_GPIO_IDX_TDO) != ERROR_OK ||
-                       helper_get_line(ADAPTER_GPIO_IDX_TDI) != ERROR_OK ||
-                       helper_get_line(ADAPTER_GPIO_IDX_TCK) != ERROR_OK ||
-                       helper_get_line(ADAPTER_GPIO_IDX_TMS) != ERROR_OK ||
-                       helper_get_line(ADAPTER_GPIO_IDX_TRST) != ERROR_OK)
-                               goto out_error;
+               if (helper_get_line(ADAPTER_GPIO_IDX_TDO) != ERROR_OK
+                               || helper_get_line(ADAPTER_GPIO_IDX_TDI) != 
ERROR_OK
+                               || helper_get_line(ADAPTER_GPIO_IDX_TCK) != 
ERROR_OK
+                               || helper_get_line(ADAPTER_GPIO_IDX_TMS) != 
ERROR_OK
+                               || helper_get_line(ADAPTER_GPIO_IDX_TRST) != 
ERROR_OK)
+                       goto out_error;
        }
 
        if (transport_is_swd()) {
@@ -413,9 +413,9 @@ static int linuxgpiod_init(void)
                        goto out_error;
        }
 
-       if (helper_get_line(ADAPTER_GPIO_IDX_SRST) != ERROR_OK ||
-               helper_get_line(ADAPTER_GPIO_IDX_LED) != ERROR_OK)
-                       goto out_error;
+       if (helper_get_line(ADAPTER_GPIO_IDX_SRST) != ERROR_OK
+                       || helper_get_line(ADAPTER_GPIO_IDX_LED) != ERROR_OK)
+               goto out_error;
 
        return ERROR_OK;
 

-- 

Reply via email to