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/+/8498

-- gerrit

commit 4f2df0daf37cc3f8c2f8c37c0ea06772ec783fe8
Author: Antonio Borneo <borneo.anto...@gmail.com>
Date:   Mon Sep 16 13:49:04 2024 +0200

    target: arm: drop casts commented-out
    
    The function dpm->finish() returns a value that is almost always
    ignored.
    Drop the commented-out cast
            /* (void) */
    
    Change-Id: I7ff210a2693dd1877b7c7591705cdcd96a2c6125
    Signed-off-by: Antonio Borneo <borneo.anto...@gmail.com>

diff --git a/src/target/arm_dpm.c b/src/target/arm_dpm.c
index 9f3a444afc..63fc2400dc 100644
--- a/src/target/arm_dpm.c
+++ b/src/target/arm_dpm.c
@@ -59,7 +59,7 @@ static int dpm_mrc(struct target *target, int cpnum,
                        ARMV4_5_MRC(cpnum, op1, 0, crn, crm, op2),
                        value);
 
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
        return retval;
 }
 
@@ -82,7 +82,7 @@ static int dpm_mrrc(struct target *target, int cpnum,
                        ARMV5_T_MRRC(cpnum, op, 0, 1, crm),
                        value);
 
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
        return retval;
 }
 
@@ -107,7 +107,7 @@ static int dpm_mcr(struct target *target, int cpnum,
                        ARMV4_5_MCR(cpnum, op1, 0, crn, crm, op2),
                        value);
 
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
        return retval;
 }
 
@@ -129,7 +129,7 @@ static int dpm_mcrr(struct target *target, int cpnum,
        retval = dpm->instr_write_data_r0_r1(dpm,
                        ARMV5_T_MCRR(cpnum, op, 0, 1, crm), value);
 
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
 
        return retval;
 }
@@ -424,7 +424,7 @@ int arm_dpm_read_current_registers(struct arm_dpm *dpm)
         */
 
 fail:
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
        return retval;
 }
 
@@ -634,7 +634,7 @@ int arm_dpm_write_dirty_registers(struct arm_dpm *dpm, bool 
bpwp)
                cache->reg_list[i].dirty = false;
        }
 
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
 done:
        return retval;
 }
@@ -721,10 +721,10 @@ static int arm_dpm_read_core_reg(struct target *target, 
struct reg *r,
        /* always clean up, regardless of error */
 
        if (mode != ARM_MODE_ANY)
-               /* (void) */ arm_dpm_modeswitch(dpm, ARM_MODE_ANY);
+               arm_dpm_modeswitch(dpm, ARM_MODE_ANY);
 
 fail:
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
        return retval;
 }
 
@@ -763,10 +763,10 @@ static int arm_dpm_write_core_reg(struct target *target, 
struct reg *r,
        /* always clean up, regardless of error */
 
        if (mode != ARM_MODE_ANY)
-               /* (void) */ arm_dpm_modeswitch(dpm, ARM_MODE_ANY);
+               arm_dpm_modeswitch(dpm, ARM_MODE_ANY);
 
 fail:
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
        return retval;
 }
 
@@ -833,7 +833,7 @@ static int arm_dpm_full_context(struct target *target)
        } while (did_read);
 
        retval = arm_dpm_modeswitch(dpm, ARM_MODE_ANY);
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
 done:
        return retval;
 }
diff --git a/src/target/armv7a.c b/src/target/armv7a.c
index dc3752e0b0..e22d309a07 100644
--- a/src/target/armv7a.c
+++ b/src/target/armv7a.c
@@ -74,7 +74,7 @@ static void armv7a_show_fault_registers(struct target *target)
                ", IFAR: %8.8" PRIx32, ifsr, ifar);
 
 done:
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
 }
 
 
diff --git a/src/target/armv8.c b/src/target/armv8.c
index 04680e5606..0e63c95fa2 100644
--- a/src/target/armv8.c
+++ b/src/target/armv8.c
@@ -1010,7 +1010,7 @@ static void armv8_show_fault_registers32(struct 
armv8_common *armv8)
                ", IFAR: %8.8" PRIx32, ifsr, ifar);
 
 done:
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
 }
 
 static __attribute__((unused)) void armv8_show_fault_registers(struct target 
*target)
diff --git a/src/target/armv8_dpm.c b/src/target/armv8_dpm.c
index 271bd91c3b..5c21996d7a 100644
--- a/src/target/armv8_dpm.c
+++ b/src/target/armv8_dpm.c
@@ -501,7 +501,7 @@ static int dpmv8_mrc(struct target *target, int cpnum,
                        ARMV4_5_MRC(cpnum, op1, 0, crn, crm, op2),
                        value);
 
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
        return retval;
 }
 
@@ -526,7 +526,7 @@ static int dpmv8_mcr(struct target *target, int cpnum,
                        ARMV4_5_MCR(cpnum, op1, 0, crn, crm, op2),
                        value);
 
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
        return retval;
 }
 
@@ -992,7 +992,7 @@ static int armv8_dpm_read_core_reg(struct target *target, 
struct reg *r,
                goto fail;
 
 fail:
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
        return retval;
 }
 
@@ -1086,7 +1086,7 @@ static int armv8_dpm_full_context(struct target *target)
        } while (did_read);
 
        retval = armv8_dpm_modeswitch(dpm, ARM_MODE_ANY);
-       /* (void) */ dpm->finish(dpm);
+       dpm->finish(dpm);
 done:
        return retval;
 }

-- 

Reply via email to