PCI: Reorder pcibios_sriov_disable()
Move pcibios_sriov_disable() up so it's defined before a future use. [bhelgaas: split to separate patch for reviewability] Signed-off-by: Alexander Duyck <aduyck@mirantis.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Wei Yang <weiyang@linux.vnet.ibm.com>
This commit is contained in:
parent
3443c38205
commit
a39e3fcd72
|
@ -230,6 +230,11 @@ int __weak pcibios_sriov_enable(struct pci_dev *pdev, u16 num_vfs)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int __weak pcibios_sriov_disable(struct pci_dev *pdev)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int sriov_enable(struct pci_dev *dev, int nr_virtfn)
|
static int sriov_enable(struct pci_dev *dev, int nr_virtfn)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
|
@ -344,11 +349,6 @@ static int sriov_enable(struct pci_dev *dev, int nr_virtfn)
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
int __weak pcibios_sriov_disable(struct pci_dev *pdev)
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void sriov_disable(struct pci_dev *dev)
|
static void sriov_disable(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
Loading…
Reference in New Issue