mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
7f2acdfbe0
commit
4bd54186ce
|
@ -46,13 +46,13 @@ void hmp_pcie_aer_inject_error(Monitor *mon, const QDict *qdict)
|
||||||
/* kvm-all wants this */
|
/* kvm-all wants this */
|
||||||
MSIMessage pci_get_msi_message(PCIDevice *dev, int vector)
|
MSIMessage pci_get_msi_message(PCIDevice *dev, int vector)
|
||||||
{
|
{
|
||||||
g_assert(false);
|
g_assert_not_reached();
|
||||||
return (MSIMessage){};
|
return (MSIMessage){};
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t pci_requester_id(PCIDevice *dev)
|
uint16_t pci_requester_id(PCIDevice *dev)
|
||||||
{
|
{
|
||||||
g_assert(false);
|
g_assert_not_reached();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue