From f1912e48244816d071b2836052c54845ba57343c Mon Sep 17 00:00:00 2001 From: Pierrick Bouvier Date: Wed, 18 Sep 2024 21:46:33 -0700 Subject: hw/hyperv: remove return after g_assert_not_reached() This patch is part of a series that moves towards a consistent use of g_assert_not_reached() rather than an ad hoc mix of different assertion mechanisms. Reviewed-by: Richard Henderson Signed-off-by: Pierrick Bouvier Message-ID: <20240919044641.386068-27-pierrick.bouvier@linaro.org> Signed-off-by: Thomas Huth --- hw/hyperv/vmbus.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'hw/hyperv/vmbus.c') diff --git a/hw/hyperv/vmbus.c b/hw/hyperv/vmbus.c index 03f415bf22..b36bd3d67d 100644 --- a/hw/hyperv/vmbus.c +++ b/hw/hyperv/vmbus.c @@ -1890,7 +1890,6 @@ static bool complete_create_gpadl(VMBus *vmbus) } g_assert_not_reached(); - return false; } static void handle_gpadl_teardown(VMBus *vmbus, @@ -1947,7 +1946,6 @@ static bool complete_teardown_gpadl(VMBus *vmbus) } g_assert_not_reached(); - return false; } static void handle_open_channel(VMBus *vmbus, vmbus_message_open_channel *msg, @@ -2021,7 +2019,6 @@ static bool complete_open_channel(VMBus *vmbus) } g_assert_not_reached(); - return false; } static void vdev_reset_on_close(VMBusDevice *vdev) -- cgit 1.4.1