Message ID | 20250620172751.94231-7-philmd@linaro.org |
---|---|
State | New |
Headers | show |
Series | accel/split/arm: Run EL2 using TCG and EL1/EL0 in hardware with HVF | expand |
On 6/20/25 10:27, Philippe Mathieu-Daudé wrote: > Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> > --- > accel/split/split-all.c | 6 ------ > 1 file changed, 6 deletions(-) > > diff --git a/accel/split/split-all.c b/accel/split/split-all.c > index 28f626d0ff4..8b9f8ff77a4 100644 > --- a/accel/split/split-all.c > +++ b/accel/split/split-all.c > @@ -37,11 +37,6 @@ static int split_accel_init_machine(MachineState *ms, AccelState *as) > return 0; > } > > -static void split_setup_post(MachineState *ms, AccelState *accel) > -{ > - g_assert_not_reached(); > -} > - > static bool split_has_memory(MachineState *ms, AddressSpace *as, > hwaddr start_addr, hwaddr size) > { > @@ -129,7 +124,6 @@ static void split_accel_class_init(ObjectClass *oc, const void *data) > > ac->name = "split"; > ac->init_machine = split_accel_init_machine; > - ac->setup_post = split_setup_post; > ac->has_memory = split_has_memory; > ac->cpus_are_resettable = split_cpus_are_resettable; > ac->supports_guest_debug = split_supports_guest_debug; Reviewed-by: Richard Henderson <richard.henderson@linaro.org> r~
diff --git a/accel/split/split-all.c b/accel/split/split-all.c index 28f626d0ff4..8b9f8ff77a4 100644 --- a/accel/split/split-all.c +++ b/accel/split/split-all.c @@ -37,11 +37,6 @@ static int split_accel_init_machine(MachineState *ms, AccelState *as) return 0; } -static void split_setup_post(MachineState *ms, AccelState *accel) -{ - g_assert_not_reached(); -} - static bool split_has_memory(MachineState *ms, AddressSpace *as, hwaddr start_addr, hwaddr size) { @@ -129,7 +124,6 @@ static void split_accel_class_init(ObjectClass *oc, const void *data) ac->name = "split"; ac->init_machine = split_accel_init_machine; - ac->setup_post = split_setup_post; ac->has_memory = split_has_memory; ac->cpus_are_resettable = split_cpus_are_resettable; ac->supports_guest_debug = split_supports_guest_debug;
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> --- accel/split/split-all.c | 6 ------ 1 file changed, 6 deletions(-)