From: Pierrick Bouvier Date: Thu, 19 Sep 2024 04:46:27 +0000 (-0700) Subject: hw/tpm: remove break after g_assert_not_reached() X-Git-Tag: v9.2.0-rc0~72^2~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bfce9288177b29ecd29e9a81aa21d7016d4558c0;p=thirdparty%2Fqemu.git hw/tpm: remove break 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-21-pierrick.bouvier@linaro.org> Signed-off-by: Thomas Huth --- diff --git a/hw/tpm/tpm_spapr.c b/hw/tpm/tpm_spapr.c index e084e987e6e..5f7a0dfc617 100644 --- a/hw/tpm/tpm_spapr.c +++ b/hw/tpm/tpm_spapr.c @@ -206,7 +206,6 @@ static int tpm_spapr_do_crq(struct SpaprVioDevice *dev, uint8_t *crq_data) break; default: g_assert_not_reached(); - break; } trace_tpm_spapr_do_crq_get_version(be32_to_cpu(local_crq.data)); spapr_tpm_send_crq(dev, &local_crq);