diff options
author | Philippe Mathieu-Daudé | 2021-09-11 18:54:11 +0200 |
---|---|---|
committer | Richard Henderson | 2021-09-14 21:00:20 +0200 |
commit | d2470cf0e9c0f99bf73beef63595298153ef91a7 (patch) | |
tree | f216e9344c27d5e800144c0260352024a45159b7 /target/avr | |
parent | tcg/arm: Fix tcg_out_vec_op function signature (diff) | |
download | qemu-d2470cf0e9c0f99bf73beef63595298153ef91a7.tar.gz qemu-d2470cf0e9c0f99bf73beef63595298153ef91a7.tar.xz qemu-d2470cf0e9c0f99bf73beef63595298153ef91a7.zip |
target/avr: Remove pointless use of CONFIG_USER_ONLY definition
Commit f1c671f96cb ("target/avr: Introduce basic CPU class object")
added to target/avr/cpu.h:
#ifdef CONFIG_USER_ONLY
#error "AVR 8-bit does not support user mode"
#endif
Remove the CONFIG_USER_ONLY definition introduced by mistake in
commit 78271684719 ("cpu: tcg_ops: move to tcg-cpu-ops.h, keep a
pointer in CPUClass").
Reported-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-By: Warner Losh <imp@bsdimp.com>
Message-Id: <20210911165434.531552-2-f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/avr')
-rw-r--r-- | target/avr/cpu.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target/avr/cpu.c b/target/avr/cpu.c index ea14175ca5..5d70e34dd5 100644 --- a/target/avr/cpu.c +++ b/target/avr/cpu.c @@ -197,10 +197,7 @@ static const struct TCGCPUOps avr_tcg_ops = { .synchronize_from_tb = avr_cpu_synchronize_from_tb, .cpu_exec_interrupt = avr_cpu_exec_interrupt, .tlb_fill = avr_cpu_tlb_fill, - -#ifndef CONFIG_USER_ONLY .do_interrupt = avr_cpu_do_interrupt, -#endif /* !CONFIG_USER_ONLY */ }; static void avr_cpu_class_init(ObjectClass *oc, void *data) |