aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Fleytman <dmitry.fleytman@ravellosystems.com>2016-06-01 11:23:31 +0300
committerJason Wang <jasowang@redhat.com>2016-06-02 10:42:09 +0800
commit3bdfaabbcf0e91d16e90691cf8bd4a836c67279a (patch)
tree068abdf677d89d9f9444c6938877f3629e79867a
parent059a65f3ad506105ac9b5b0c7c31f8a0be0abbbc (diff)
downloadqemu-3bdfaabbcf0e91d16e90691cf8bd4a836c67279a.zip
qemu-3bdfaabbcf0e91d16e90691cf8bd4a836c67279a.tar.gz
qemu-3bdfaabbcf0e91d16e90691cf8bd4a836c67279a.tar.bz2
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>
-rw-r--r--hw/pci/msix.c2
-rw-r--r--include/hw/pci/msix.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/hw/pci/msix.c b/hw/pci/msix.c
index b75f0e9..0ec1cb1 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);
}
diff --git a/include/hw/pci/msix.h b/include/hw/pci/msix.h
index 72e5f93..048a29d 100644
--- a/include/hw/pci/msix.h
+++ b/include/hw/pci/msix.h
@@ -29,6 +29,7 @@ int msix_present(PCIDevice *dev);
bool msix_is_masked(PCIDevice *dev, unsigned vector);
void msix_set_pending(PCIDevice *dev, unsigned vector);
+void msix_clr_pending(PCIDevice *dev, int vector);
int msix_vector_use(PCIDevice *dev, unsigned vector);
void msix_vector_unuse(PCIDevice *dev, unsigned vector);