Commit daca1948 authored by Yishai Hadas's avatar Yishai Hadas Committed by Alex Williamson

vfio/virtio: Declare virtiovf_pci_aer_reset_done() static

Declare virtiovf_pci_aer_reset_done() as a static function to prevent
the below build warning.

"warning: no previous prototype for 'virtiovf_pci_aer_reset_done'
[-Wmissing-prototypes]"

Fixes: eb61eca0 ("vfio/virtio: Introduce a vfio driver over virtio devices")
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/lkml/20231220143122.63337669@canb.auug.org.au/Signed-off-by: default avatarYishai Hadas <yishaih@nvidia.com>
Link: https://lore.kernel.org/r/20231220082456.241973-1-yishaih@nvidia.comReported-by: default avatarkernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202312202115.oDmvN1VE-lkp@intel.com/Signed-off-by: default avatarAlex Williamson <alex.williamson@redhat.com>
parent 0214392d
......@@ -547,7 +547,7 @@ static const struct pci_device_id virtiovf_pci_table[] = {
MODULE_DEVICE_TABLE(pci, virtiovf_pci_table);
void virtiovf_pci_aer_reset_done(struct pci_dev *pdev)
static void virtiovf_pci_aer_reset_done(struct pci_dev *pdev)
{
struct virtiovf_pci_core_device *virtvdev = dev_get_drvdata(&pdev->dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment