summary refs log tree commit diff stats
path: root/hw/pci/msi.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2022-11-21 09:50:46 +0100
committerMarkus Armbruster <armbru@redhat.com>2022-12-14 16:19:35 +0100
commit740d6c4eba8bb44ea00550ccc97a4c49945ecc3c (patch)
tree944dd4ac26340610b52c35d548c7d2bc035b4ce6 /hw/pci/msi.c
parent6c37ebf3301ca449ebe449138b86e55762503250 (diff)
downloadfocaccia-qemu-740d6c4eba8bb44ea00550ccc97a4c49945ecc3c.tar.gz
focaccia-qemu-740d6c4eba8bb44ea00550ccc97a4c49945ecc3c.zip
error: Drop a few superfluous ERRP_GUARD()
include/qapi/error.h on ERRP_GUARD():

 * It must be used when the function dereferences @errp or passes
 * @errp to error_prepend(), error_vprepend(), or error_append_hint().
 * It is safe to use even when it's not needed, but please avoid
 * cluttering the source with useless code.

Clean up some of this clutter.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20221121085054.683122-3-armbru@redhat.com>
Diffstat (limited to 'hw/pci/msi.c')
-rw-r--r--hw/pci/msi.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/pci/msi.c b/hw/pci/msi.c
index 058d1d1ef1..1cadf150bc 100644
--- a/hw/pci/msi.c
+++ b/hw/pci/msi.c
@@ -317,7 +317,6 @@ bool msi_is_masked(const PCIDevice *dev, unsigned int vector)
 
 void msi_set_mask(PCIDevice *dev, int vector, bool mask, Error **errp)
 {
-    ERRP_GUARD();
     uint16_t flags = pci_get_word(dev->config + msi_flags_off(dev));
     bool msi64bit = flags & PCI_MSI_FLAGS_64BIT;
     uint32_t irq_state, vector_mask, pending;