aboutsummaryrefslogtreecommitdiff
path: root/hw/pci
diff options
context:
space:
mode:
authorPierrick Bouvier <pierrick.bouvier@linaro.org>2024-09-18 21:46:18 -0700
committerThomas Huth <thuth@redhat.com>2024-09-24 13:53:35 +0200
commit4bd54186ce7ce327aba6fc41d7a10b72ff36a89d (patch)
tree6232e298ee57dd0de584f33d3f2e60ece2724acb /hw/pci
parent7f2acdfbe068de264195509fbd7d682159519c3f (diff)
downloadqemu-4bd54186ce7ce327aba6fc41d7a10b72ff36a89d.zip
qemu-4bd54186ce7ce327aba6fc41d7a10b72ff36a89d.tar.gz
qemu-4bd54186ce7ce327aba6fc41d7a10b72ff36a89d.tar.bz2
hw/pci: replace assert(false) with 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 <richard.henderson@linaro.org> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-ID: <20240919044641.386068-12-pierrick.bouvier@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw/pci')
-rw-r--r--hw/pci/pci-stub.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/pci/pci-stub.c b/hw/pci/pci-stub.c
index f050868..c6950e2 100644
--- a/hw/pci/pci-stub.c
+++ b/hw/pci/pci-stub.c
@@ -46,13 +46,13 @@ void hmp_pcie_aer_inject_error(Monitor *mon, const QDict *qdict)
/* kvm-all wants this */
MSIMessage pci_get_msi_message(PCIDevice *dev, int vector)
{
- g_assert(false);
+ g_assert_not_reached();
return (MSIMessage){};
}
uint16_t pci_requester_id(PCIDevice *dev)
{
- g_assert(false);
+ g_assert_not_reached();
return 0;
}