diff options
author | Dmitry Fleytman <dmitry.fleytman@ravellosystems.com> | 2016-06-01 11:23:31 +0300 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2016-06-02 10:42:09 +0800 |
commit | 3bdfaabbcf0e91d16e90691cf8bd4a836c67279a (patch) | |
tree | 068abdf677d89d9f9444c6938877f3629e79867a /hw/pci/msix.c | |
parent | 059a65f3ad506105ac9b5b0c7c31f8a0be0abbbc (diff) | |
download | qemu-3bdfaabbcf0e91d16e90691cf8bd4a836c67279a.tar.gz qemu-3bdfaabbcf0e91d16e90691cf8bd4a836c67279a.tar.bz2 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/pci/msix.c')
-rw-r--r-- | hw/pci/msix.c | 2 |
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); } |