flash/nor/psoc4: fix warnings
Reported by Clang static analyzer. Change-Id: I1118f303f468b6a78ec6cba692762aee565bdf9e Signed-off-by: Tomas Vanek <vanekt@fbl.cz> Reviewed-on: http://openocd.zylin.com/4407 Tested-by: jenkinsriscv-compliance-dev
parent
a088e39423
commit
6668628431
|
@ -276,8 +276,8 @@ static int psoc4_sysreq(struct flash_bank *bank, uint8_t cmd,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sysreq_params_size) {
|
if (sysreq_params_size) {
|
||||||
LOG_DEBUG("SYSREQ %02" PRIx8 " %04" PRIx16 " %08" PRIx32 " %08" PRIx32 " size %" PRIu32,
|
LOG_DEBUG("SYSREQ %02" PRIx8 " %04" PRIx16 " %08" PRIx32 " size %" PRIu32,
|
||||||
cmd, cmd_param, param1, sysreq_params[0], sysreq_params_size);
|
cmd, cmd_param, param1, sysreq_params_size);
|
||||||
/* Allocate memory for sysreq_params */
|
/* Allocate memory for sysreq_params */
|
||||||
retval = target_alloc_working_area(target, sysreq_params_size, &sysreq_mem);
|
retval = target_alloc_working_area(target, sysreq_params_size, &sysreq_mem);
|
||||||
if (retval != ERROR_OK) {
|
if (retval != ERROR_OK) {
|
||||||
|
@ -323,6 +323,7 @@ static int psoc4_sysreq(struct flash_bank *bank, uint8_t cmd,
|
||||||
if (armv7m == NULL) {
|
if (armv7m == NULL) {
|
||||||
/* something is very wrong if armv7m is NULL */
|
/* something is very wrong if armv7m is NULL */
|
||||||
LOG_ERROR("unable to get armv7m target");
|
LOG_ERROR("unable to get armv7m target");
|
||||||
|
retval = ERROR_FAIL;
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue