forked from auracaster/openocd
openocd: fix Yoda conditions with checkpatch
The new checkpatch can automatically fix the code, but this feature is still error prone and not complete. Patch generated automatically through the new checkpatch with flags "--types CONSTANT_COMPARISON --fix-inplace". Some Yoda condition is detected by checkpatch but not fixed; it will be fixed manually in a following commit. Change-Id: Ifaaa1159e63dbd1db6aa3c017125df9874fa9703 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/6355 Tested-by: jenkins
This commit is contained in:
@@ -1212,7 +1212,7 @@ static int gdb_get_registers_packet(struct connection *connection,
|
||||
LOG_DEBUG("-");
|
||||
#endif
|
||||
|
||||
if ((target->rtos) && (ERROR_OK == rtos_get_gdb_reg_list(connection)))
|
||||
if ((target->rtos) && (rtos_get_gdb_reg_list(connection) == ERROR_OK))
|
||||
return ERROR_OK;
|
||||
|
||||
retval = target_get_gdb_reg_list(target, ®_list, ®_list_size,
|
||||
@@ -1342,7 +1342,7 @@ static int gdb_get_register_packet(struct connection *connection,
|
||||
LOG_DEBUG("-");
|
||||
#endif
|
||||
|
||||
if ((target->rtos) && (ERROR_OK == rtos_get_gdb_reg(connection, reg_num)))
|
||||
if ((target->rtos) && (rtos_get_gdb_reg(connection, reg_num) == ERROR_OK))
|
||||
return ERROR_OK;
|
||||
|
||||
retval = target_get_gdb_reg_list_noread(target, ®_list, ®_list_size,
|
||||
@@ -1399,7 +1399,7 @@ static int gdb_set_register_packet(struct connection *connection,
|
||||
gdb_target_to_reg(target, separator + 1, chars, bin_buf);
|
||||
|
||||
if ((target->rtos) &&
|
||||
(ERROR_OK == rtos_set_reg(connection, reg_num, bin_buf))) {
|
||||
(rtos_set_reg(connection, reg_num, bin_buf) == ERROR_OK)) {
|
||||
free(bin_buf);
|
||||
gdb_put_packet(connection, "OK", 2);
|
||||
return ERROR_OK;
|
||||
|
||||
Reference in New Issue
Block a user