aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/vfio
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2013-03-25 13:15:44 -0400
committerAlex Williamson <alex.williamson@redhat.com>2013-03-25 13:15:44 -0400
commit0bced2f7280cd12b66229ba55d05c62a4eef6cfd (patch)
tree0df7cde914a4da3d0d2590709c02188c945abce1 /drivers/vfio
parentdad9f8972e04cd081a028d8fb1249d746d97fc03 (diff)
vfio: make local function vfio_pci_intx_unmask_handler() static
vfio_pci_intx_unmask_handler() was not declared. It should be static. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio')
-rw-r--r--drivers/vfio/pci/vfio_pci_intrs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/vfio/pci/vfio_pci_intrs.c b/drivers/vfio/pci/vfio_pci_intrs.c
index b84bf2210a91..c4429418124e 100644
--- a/drivers/vfio/pci/vfio_pci_intrs.c
+++ b/drivers/vfio/pci/vfio_pci_intrs.c
@@ -286,7 +286,8 @@ void vfio_pci_intx_mask(struct vfio_pci_device *vdev)
286 * a signal is necessary, which can then be handled via a work queue 286 * a signal is necessary, which can then be handled via a work queue
287 * or directly depending on the caller. 287 * or directly depending on the caller.
288 */ 288 */
289int vfio_pci_intx_unmask_handler(struct vfio_pci_device *vdev, void *unused) 289static int vfio_pci_intx_unmask_handler(struct vfio_pci_device *vdev,
290 void *unused)
290{ 291{
291 struct pci_dev *pdev = vdev->pdev; 292 struct pci_dev *pdev = vdev->pdev;
292 unsigned long flags; 293 unsigned long flags;