]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
xen/pt: Make xen_pt_msi_set_enable static
authorKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Wed, 24 Jun 2015 21:26:43 +0000 (17:26 -0400)
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>
Wed, 2 Dec 2015 14:21:44 +0000 (14:21 +0000)
As we do not use it outside our code.

Reviewed-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
hw/xen/xen_pt.h
hw/xen/xen_pt_msi.c

index 4454ba951f07d4fa713de38659e76d1af9603042..017065c20d907f9920c225efa7c5dea646674a5c 100644 (file)
@@ -293,7 +293,6 @@ static inline uint8_t xen_pt_pci_intx(XenPCIPassthroughState *s)
 }
 
 /* MSI/MSI-X */
-int xen_pt_msi_set_enable(XenPCIPassthroughState *s, bool en);
 int xen_pt_msi_setup(XenPCIPassthroughState *s);
 int xen_pt_msi_update(XenPCIPassthroughState *d);
 void xen_pt_msi_disable(XenPCIPassthroughState *s);
index 49671e16516545e6268e69d0b4e6f688c90a1fed..71c872b8df2ad91ca809e9e162b02f99eb59b91f 100644 (file)
@@ -220,7 +220,7 @@ static int msi_msix_disable(XenPCIPassthroughState *s,
  * MSI virtualization functions
  */
 
-int xen_pt_msi_set_enable(XenPCIPassthroughState *s, bool enable)
+static int xen_pt_msi_set_enable(XenPCIPassthroughState *s, bool enable)
 {
     XEN_PT_LOG(&s->dev, "%s MSI.\n", enable ? "enabling" : "disabling");