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/display/virtio-gpu-base.c | |
parent | 720a0e417ef0814d90aa884096a643b02ee854dc (diff) | |
download | qemu-8a2b516ba2855c4530388051de2b8d17bc780ea8.zip qemu-8a2b516ba2855c4530388051de2b8d17bc780ea8.tar.gz qemu-8a2b516ba2855c4530388051de2b8d17bc780ea8.tar.bz2 |
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/display/virtio-gpu-base.c')
-rw-r--r-- | hw/display/virtio-gpu-base.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/display/virtio-gpu-base.c b/hw/display/virtio-gpu-base.c index 7827536..321a6f4 100644 --- a/hw/display/virtio-gpu-base.c +++ b/hw/display/virtio-gpu-base.c @@ -110,7 +110,6 @@ static void virtio_gpu_ui_info(void *opaque, uint32_t idx, QemuUIInfo *info) /* send event to guest */ virtio_gpu_notify_event(g, VIRTIO_GPU_EVENT_DISPLAY); - return; } static void |