mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
PCI/AER: Remove forward declarations
Reorder code to remove forward declarations. No functional change intended. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Keith Busch <keith.busch@intel.com>
This commit is contained in:
parent
3a3869f1c4
commit
0054ca8e10
1 changed files with 11 additions and 16 deletions
|
@ -23,22 +23,6 @@
|
||||||
#include "aerdrv.h"
|
#include "aerdrv.h"
|
||||||
#include "../../pci.h"
|
#include "../../pci.h"
|
||||||
|
|
||||||
static int aer_probe(struct pcie_device *dev);
|
|
||||||
static void aer_remove(struct pcie_device *dev);
|
|
||||||
static void aer_error_resume(struct pci_dev *dev);
|
|
||||||
static pci_ers_result_t aer_root_reset(struct pci_dev *dev);
|
|
||||||
|
|
||||||
static struct pcie_port_service_driver aerdriver = {
|
|
||||||
.name = "aer",
|
|
||||||
.port_type = PCI_EXP_TYPE_ROOT_PORT,
|
|
||||||
.service = PCIE_PORT_SERVICE_AER,
|
|
||||||
|
|
||||||
.probe = aer_probe,
|
|
||||||
.remove = aer_remove,
|
|
||||||
.error_resume = aer_error_resume,
|
|
||||||
.reset_link = aer_root_reset,
|
|
||||||
};
|
|
||||||
|
|
||||||
static int pcie_aer_disable;
|
static int pcie_aer_disable;
|
||||||
|
|
||||||
void pci_no_aer(void)
|
void pci_no_aer(void)
|
||||||
|
@ -357,6 +341,17 @@ static void aer_error_resume(struct pci_dev *dev)
|
||||||
pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
|
pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static struct pcie_port_service_driver aerdriver = {
|
||||||
|
.name = "aer",
|
||||||
|
.port_type = PCI_EXP_TYPE_ROOT_PORT,
|
||||||
|
.service = PCIE_PORT_SERVICE_AER,
|
||||||
|
|
||||||
|
.probe = aer_probe,
|
||||||
|
.remove = aer_remove,
|
||||||
|
.error_resume = aer_error_resume,
|
||||||
|
.reset_link = aer_root_reset,
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* aer_service_init - register AER root service driver
|
* aer_service_init - register AER root service driver
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue