diff options
| author | Markus Armbruster <armbru@redhat.com> | 2025-04-07 10:26:42 +0200 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2025-04-24 09:33:42 +0200 |
| commit | 8a2b516ba2855c4530388051de2b8d17bc780ea8 (patch) | |
| tree | 1303019c401f96062ce5a35d591ba993d1b79a16 /hw/loongarch/virt.c | |
| parent | 720a0e417ef0814d90aa884096a643b02ee854dc (diff) | |
| download | focaccia-qemu-8a2b516ba2855c4530388051de2b8d17bc780ea8.tar.gz focaccia-qemu-8a2b516ba2855c4530388051de2b8d17bc780ea8.zip | |
cleanup: Drop pointless return at end of function
A few functions now end with a label. The next commit will clean them up. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20250407082643.2310002-3-armbru@redhat.com> [Straightforward conflict with commit 988ad4ccebb6 (hw/loongarch/virt: Fix cpuslot::cpu set at last in virt_cpu_plug()) resolved]
Diffstat (limited to 'hw/loongarch/virt.c')
| -rw-r--r-- | hw/loongarch/virt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/loongarch/virt.c b/hw/loongarch/virt.c index 65c9027feb..b2793c803e 100644 --- a/hw/loongarch/virt.c +++ b/hw/loongarch/virt.c @@ -948,7 +948,6 @@ static void virt_cpu_unplug(HotplugHandler *hotplug_dev, cpu_slot = virt_find_cpu_slot(MACHINE(lvms), cpu->phy_id); cpu_slot->cpu = NULL; - return; } static void virt_cpu_plug(HotplugHandler *hotplug_dev, @@ -973,7 +972,6 @@ static void virt_cpu_plug(HotplugHandler *hotplug_dev, cpu_slot = virt_find_cpu_slot(MACHINE(lvms), cpu->phy_id); cpu_slot->cpu = CPU(dev); - return; } static bool memhp_type_supported(DeviceState *dev) |