diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-01-28 12:46:44 +1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-01-29 21:04:10 +1000 |
| commit | 1764ad70ce7c78b7f2f18bcf79cbab42a4e18b96 (patch) | |
| tree | 2fdf10a69cac6424b542c4df8ef03c1749d3213c /target/avr/cpu.c | |
| parent | 93c6091bfa41792b28b25cd7e3c1f578e44b0d15 (diff) | |
| download | focaccia-qemu-1764ad70ce7c78b7f2f18bcf79cbab42a4e18b96.tar.gz focaccia-qemu-1764ad70ce7c78b7f2f18bcf79cbab42a4e18b96.zip | |
include/qemu: Add TCGCPUOps typedef to typedefs.h
QEMU coding style recommends using structure typedefs. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/avr/cpu.c')
| -rw-r--r-- | target/avr/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/avr/cpu.c b/target/avr/cpu.c index f5cbdc4a8c..1c68748b24 100644 --- a/target/avr/cpu.c +++ b/target/avr/cpu.c @@ -210,7 +210,7 @@ static const struct SysemuCPUOps avr_sysemu_ops = { #include "hw/core/tcg-cpu-ops.h" -static const struct TCGCPUOps avr_tcg_ops = { +static const TCGCPUOps avr_tcg_ops = { .initialize = avr_cpu_tcg_init, .synchronize_from_tb = avr_cpu_synchronize_from_tb, .restore_state_to_opc = avr_restore_state_to_opc, |