提交 8f6fb677 编写于 作者: K Keith Busch 提交者: Bjorn Helgaas

PCI/AER: Remove unused parameters

Remove unused "struct pcie_device *" parameters to handle_error_source()
and aer_process_err_devices().  No functional change intended.
Signed-off-by: NKeith Busch <keith.busch@intel.com>
Signed-off-by: NBjorn Helgaas <bhelgaas@google.com>
上级 010caed4
...@@ -230,15 +230,12 @@ static bool find_source_device(struct pci_dev *parent, ...@@ -230,15 +230,12 @@ static bool find_source_device(struct pci_dev *parent,
/** /**
* handle_error_source - handle logging error into an event log * handle_error_source - handle logging error into an event log
* @aerdev: pointer to pcie_device data structure of the root port
* @dev: pointer to pci_dev data structure of error source device * @dev: pointer to pci_dev data structure of error source device
* @info: comprehensive error information * @info: comprehensive error information
* *
* Invoked when an error being detected by Root Port. * Invoked when an error being detected by Root Port.
*/ */
static void handle_error_source(struct pcie_device *aerdev, static void handle_error_source(struct pci_dev *dev, struct aer_err_info *info)
struct pci_dev *dev,
struct aer_err_info *info)
{ {
int pos; int pos;
...@@ -388,8 +385,7 @@ static int get_device_error_info(struct pci_dev *dev, struct aer_err_info *info) ...@@ -388,8 +385,7 @@ static int get_device_error_info(struct pci_dev *dev, struct aer_err_info *info)
return 1; return 1;
} }
static inline void aer_process_err_devices(struct pcie_device *p_device, static inline void aer_process_err_devices(struct aer_err_info *e_info)
struct aer_err_info *e_info)
{ {
int i; int i;
...@@ -400,7 +396,7 @@ static inline void aer_process_err_devices(struct pcie_device *p_device, ...@@ -400,7 +396,7 @@ static inline void aer_process_err_devices(struct pcie_device *p_device,
} }
for (i = 0; i < e_info->error_dev_num && e_info->dev[i]; i++) { for (i = 0; i < e_info->error_dev_num && e_info->dev[i]; i++) {
if (get_device_error_info(e_info->dev[i], e_info)) if (get_device_error_info(e_info->dev[i], e_info))
handle_error_source(p_device, e_info->dev[i], e_info); handle_error_source(e_info->dev[i], e_info);
} }
} }
...@@ -431,7 +427,7 @@ static void aer_isr_one_error(struct pcie_device *p_device, ...@@ -431,7 +427,7 @@ static void aer_isr_one_error(struct pcie_device *p_device,
aer_print_port_info(p_device->port, e_info); aer_print_port_info(p_device->port, e_info);
if (find_source_device(p_device->port, e_info)) if (find_source_device(p_device->port, e_info))
aer_process_err_devices(p_device, e_info); aer_process_err_devices(e_info);
} }
if (e_src->status & PCI_ERR_ROOT_UNCOR_RCV) { if (e_src->status & PCI_ERR_ROOT_UNCOR_RCV) {
...@@ -450,7 +446,7 @@ static void aer_isr_one_error(struct pcie_device *p_device, ...@@ -450,7 +446,7 @@ static void aer_isr_one_error(struct pcie_device *p_device,
aer_print_port_info(p_device->port, e_info); aer_print_port_info(p_device->port, e_info);
if (find_source_device(p_device->port, e_info)) if (find_source_device(p_device->port, e_info))
aer_process_err_devices(p_device, e_info); aer_process_err_devices(e_info);
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册