src: fix clang15 compiler warnings
Below warnings are fixed. 1- A function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] 2- error: variable set but not used [-Werror,-Wunused-but-set-variable] Signed-off-by: Erhan Kurubas <erhan.kurubas@espressif.com> Change-Id: I1cf14b8e5e3e732ebc9cacc4b1cb9009276a8ea9 Reviewed-on: https://review.openocd.org/c/openocd/+/7569 Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Tested-by: jenkins
This commit is contained in:
committed by
Antonio Borneo
parent
babec0fafa
commit
bb073f897c
@@ -1553,7 +1553,6 @@ static int arm7_9_restore_context(struct target *target)
|
||||
|
||||
if (dirty) {
|
||||
uint32_t mask = 0x0;
|
||||
int num_regs = 0;
|
||||
uint32_t regs[16];
|
||||
|
||||
if (mode_change) {
|
||||
@@ -1576,7 +1575,6 @@ static int arm7_9_restore_context(struct target *target)
|
||||
if (reg->dirty) {
|
||||
regs[j] = buf_get_u32(reg->value, 0, 32);
|
||||
mask |= 1 << j;
|
||||
num_regs++;
|
||||
reg->dirty = false;
|
||||
reg->valid = true;
|
||||
LOG_DEBUG("writing register %i mode %s "
|
||||
|
||||
@@ -2187,7 +2187,6 @@ int riscv_openocd_poll(struct target *target)
|
||||
int halted_hart = -1;
|
||||
|
||||
if (target->smp) {
|
||||
unsigned halts_discovered = 0;
|
||||
unsigned should_remain_halted = 0;
|
||||
unsigned should_resume = 0;
|
||||
struct target_list *list;
|
||||
@@ -2203,7 +2202,6 @@ int riscv_openocd_poll(struct target *target)
|
||||
t->debug_reason = DBG_REASON_NOTHALTED;
|
||||
break;
|
||||
case RPH_DISCOVERED_HALTED:
|
||||
halts_discovered++;
|
||||
t->state = TARGET_HALTED;
|
||||
enum riscv_halt_reason halt_reason =
|
||||
riscv_halt_reason(t, r->current_hartid);
|
||||
|
||||
@@ -1940,13 +1940,13 @@ static int target_call_timer_callbacks_check_time(int checktime)
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
int target_call_timer_callbacks()
|
||||
int target_call_timer_callbacks(void)
|
||||
{
|
||||
return target_call_timer_callbacks_check_time(1);
|
||||
}
|
||||
|
||||
/* invoke periodic callbacks immediately */
|
||||
int target_call_timer_callbacks_now()
|
||||
int target_call_timer_callbacks_now(void)
|
||||
{
|
||||
return target_call_timer_callbacks_check_time(0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user