Commit 93eacd94 authored by Oliver O'Halloran's avatar Oliver O'Halloran Committed by Michael Ellerman

powerpc/powernv: Make pnv_pci_sriov_enable() and friends static

The kernel test robot noticed these are non-static which causes Clang to
print some warnings. These are called via ppc_md function pointers so
there's no need for them to be non-static.
Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarOliver O'Halloran <oohall@gmail.com>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200705133557.443607-1-oohall@gmail.com
parent c339f9be
...@@ -1490,7 +1490,7 @@ static void pnv_ioda_release_vf_PE(struct pci_dev *pdev) ...@@ -1490,7 +1490,7 @@ static void pnv_ioda_release_vf_PE(struct pci_dev *pdev)
} }
} }
void pnv_pci_sriov_disable(struct pci_dev *pdev) static void pnv_pci_sriov_disable(struct pci_dev *pdev)
{ {
struct pci_bus *bus; struct pci_bus *bus;
struct pci_controller *hose; struct pci_controller *hose;
...@@ -1600,7 +1600,7 @@ static void pnv_ioda_setup_vf_PE(struct pci_dev *pdev, u16 num_vfs) ...@@ -1600,7 +1600,7 @@ static void pnv_ioda_setup_vf_PE(struct pci_dev *pdev, u16 num_vfs)
} }
} }
int pnv_pci_sriov_enable(struct pci_dev *pdev, u16 num_vfs) static int pnv_pci_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
{ {
struct pci_bus *bus; struct pci_bus *bus;
struct pci_controller *hose; struct pci_controller *hose;
...@@ -1715,7 +1715,7 @@ int pnv_pci_sriov_enable(struct pci_dev *pdev, u16 num_vfs) ...@@ -1715,7 +1715,7 @@ int pnv_pci_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
return ret; return ret;
} }
int pnv_pcibios_sriov_disable(struct pci_dev *pdev) static int pnv_pcibios_sriov_disable(struct pci_dev *pdev)
{ {
pnv_pci_sriov_disable(pdev); pnv_pci_sriov_disable(pdev);
...@@ -1724,7 +1724,7 @@ int pnv_pcibios_sriov_disable(struct pci_dev *pdev) ...@@ -1724,7 +1724,7 @@ int pnv_pcibios_sriov_disable(struct pci_dev *pdev)
return 0; return 0;
} }
int pnv_pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs) static int pnv_pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
{ {
/* Allocate PCI data */ /* Allocate PCI data */
add_sriov_vf_pdns(pdev); add_sriov_vf_pdns(pdev);
......
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