From: Andrew Morton Cc: Linas Vepstas Cc: Matthew Wilcox Signed-off-by: Andrew Morton --- drivers/scsi/sym53c8xx_2/sym_glue.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff -puN drivers/scsi/sym53c8xx_2/sym_glue.c~pci-error-recovery-symbios-scsi-base-support-fixes drivers/scsi/sym53c8xx_2/sym_glue.c --- a/drivers/scsi/sym53c8xx_2/sym_glue.c~pci-error-recovery-symbios-scsi-base-support-fixes +++ a/drivers/scsi/sym53c8xx_2/sym_glue.c @@ -1972,7 +1972,7 @@ static void __devexit sym2_remove(struct * @pdev: pointer to PCI device * @state: current state of the PCI slot */ -static pci_ers_result_t sym2_io_error_detected (struct pci_dev *pdev, +static pci_ers_result_t sym2_io_error_detected(struct pci_dev *pdev, enum pci_channel_state state) { struct sym_hcb *np = pci_get_drvdata(pdev); @@ -1999,7 +1999,7 @@ static pci_ers_result_t sym2_io_error_de * succesfully intialized at least once before, and so most * of the steps taken there are un-needed here. */ -static void sym2_reset_workarounds (struct pci_dev *pdev) +static void sym2_reset_workarounds(struct pci_dev *pdev) { u_char revision; u_short status_reg; @@ -2025,7 +2025,7 @@ static void sym2_reset_workarounds (stru * * Restart the card from scratch. */ -static pci_ers_result_t sym2_io_slot_reset (struct pci_dev *pdev) +static pci_ers_result_t sym2_io_slot_reset(struct pci_dev *pdev) { struct sym_hcb *np = pci_get_drvdata(pdev); @@ -2071,7 +2071,7 @@ static pci_ers_result_t sym2_io_slot_res * OK to resume normal operation. Use completion to allow * halted scsi ops to resume. */ -static void sym2_io_resume (struct pci_dev *pdev) +static void sym2_io_resume(struct pci_dev *pdev) { struct sym_hcb *np = pci_get_drvdata(pdev); complete_all(&np->s.io_reset_wait); _