diff options
author | Zenghui Yu <yuzenghui@huawei.com> | 2020-09-21 12:51:15 +0800 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2020-09-21 14:07:05 -0600 |
commit | eac7cc21c4e49ab7dfeef22e29abdee8432face9 (patch) | |
tree | e9ee264aa365c343109a0871831506ca76b6398b /drivers/vfio/pci/vfio_pci.c | |
parent | c12fa88c6d16ed3865072d91154cff6fd1cd9cd4 (diff) |
vfio/pci: Remove redundant declaration of vfio_pci_driver
It was added by commit 137e5531351d ("vfio/pci: Add sriov_configure
support") but duplicates a forward declaration earlier in the file.
Remove it.
Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio/pci/vfio_pci.c')
-rw-r--r-- | drivers/vfio/pci/vfio_pci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/vfio/pci/vfio_pci.c b/drivers/vfio/pci/vfio_pci.c index 1ab1f5cda4ac..da68e2f86622 100644 --- a/drivers/vfio/pci/vfio_pci.c +++ b/drivers/vfio/pci/vfio_pci.c @@ -1862,7 +1862,6 @@ static const struct vfio_device_ops vfio_pci_ops = { static int vfio_pci_reflck_attach(struct vfio_pci_device *vdev); static void vfio_pci_reflck_put(struct vfio_pci_reflck *reflck); -static struct pci_driver vfio_pci_driver; static int vfio_pci_bus_notifier(struct notifier_block *nb, unsigned long action, void *data) |