From: Wei Yongjun Date: Mon, 25 Mar 2013 17:15:44 +0000 (-0600) Subject: vfio: make local function vfio_pci_intx_unmask_handler() static X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=0bced2f7280cd12b66229ba55d05c62a4eef6cfd;p=openwrt%2Fstaging%2Fblogic.git 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 Signed-off-by: Alex Williamson --- 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) * a signal is necessary, which can then be handled via a work queue * or directly depending on the caller. */ -int vfio_pci_intx_unmask_handler(struct vfio_pci_device *vdev, void *unused) +static int vfio_pci_intx_unmask_handler(struct vfio_pci_device *vdev, + void *unused) { struct pci_dev *pdev = vdev->pdev; unsigned long flags;