> -----Original Message-----
> From: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com> On
> Behalf Of Philippe Mathieu-Daudé
> Sent: Friday, September 24, 2021 4:38 AM
> To: qemu-devel@nongnu.org
> Cc: Richard Henderson <richard.henderson@linaro.org>; Philippe Mathieu-
> Daudé <f4bug@amsat.org>; Taylor Simpson <tsimpson@quicinc.com>
> Subject: [PATCH v6 21/40] target/hexagon: Remove unused has_work()
> handler
>
> has_work() is sysemu specific, and Hexagon target only provides a linux-user
> implementation. Remove the unused hexagon_cpu_has_work().
>
> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
> target/hexagon/cpu.c | 6 ------
> 1 file changed, 6 deletions(-)
>
> diff --git a/target/hexagon/cpu.c b/target/hexagon/cpu.c index
> 3338365c16e..aa01974807c 100644
> --- a/target/hexagon/cpu.c
> +++ b/target/hexagon/cpu.c
> @@ -189,11 +189,6 @@ static void
> hexagon_cpu_synchronize_from_tb(CPUState *cs,
> env->gpr[HEX_REG_PC] = tb->pc;
> }
>
> -static bool hexagon_cpu_has_work(CPUState *cs) -{
> - return true;
> -}
> -
> void restore_state_to_opc(CPUHexagonState *env, TranslationBlock *tb,
> target_ulong *data) { @@ -287,7 +282,6 @@ static void
> hexagon_cpu_class_init(ObjectClass *c, void *data)
> device_class_set_parent_reset(dc, hexagon_cpu_reset, &mcc-
> >parent_reset);
>
> cc->class_by_name = hexagon_cpu_class_by_name;
> - cc->has_work = hexagon_cpu_has_work;
> cc->dump_state = hexagon_dump_state;
> cc->set_pc = hexagon_cpu_set_pc;
> cc->gdb_read_register = hexagon_gdb_read_register;
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>