summaryrefslogtreecommitdiffstats
path: root/hw
diff options
context:
space:
mode:
authorDmitry Fleytman2016-06-01 10:23:31 +0200
committerJason Wang2016-06-02 04:42:09 +0200
commit3bdfaabbcf0e91d16e90691cf8bd4a836c67279a (patch)
tree068abdf677d89d9f9444c6938877f3629e79867a /hw
parentpci: fix unaligned access in pci_xxx_quad() (diff)
downloadqemu-3bdfaabbcf0e91d16e90691cf8bd4a836c67279a.tar.gz
qemu-3bdfaabbcf0e91d16e90691cf8bd4a836c67279a.tar.xz
qemu-3bdfaabbcf0e91d16e90691cf8bd4a836c67279a.zip
msix: make msix_clr_pending() visible for clients
This function will be used by e1000e device code. Signed-off-by: Dmitry Fleytman <dmitry.fleytman@ravellosystems.com> Signed-off-by: Leonid Bloch <leonid.bloch@ravellosystems.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/pci/msix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pci/msix.c b/hw/pci/msix.c
index b75f0e9c47..0ec1cb14fc 100644
--- a/hw/pci/msix.c
+++ b/hw/pci/msix.c
@@ -72,7 +72,7 @@ void msix_set_pending(PCIDevice *dev, unsigned int vector)
*msix_pending_byte(dev, vector) |= msix_pending_mask(vector);
}
-static void msix_clr_pending(PCIDevice *dev, int vector)
+void msix_clr_pending(PCIDevice *dev, int vector)
{
*msix_pending_byte(dev, vector) &= ~msix_pending_mask(vector);
}