Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 20048
b: refs/heads/master
c: d04e4e1
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro committed Feb 8, 2006
1 parent e5468fb commit 7f1e1bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2d20eaf9426598ef156b941bcfa44e867452b770
refs/heads/master: d04e4e115bd9df2b748cb30abd610f3c0eb1e303
8 changes: 4 additions & 4 deletions trunk/arch/powerpc/platforms/pseries/eeh_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ void handle_eeh_events (struct eeh_event *event)
rc = eeh_reset_device(frozen_pdn, NULL);
if (rc)
goto hard_fail;
pci_walk_bus(frozen_bus, eeh_report_reset, 0);
pci_walk_bus(frozen_bus, eeh_report_reset, NULL);
}

/* If all devices reported they can proceed, the re-enable PIO */
Expand All @@ -342,11 +342,11 @@ void handle_eeh_events (struct eeh_event *event)
rc = eeh_reset_device(frozen_pdn, NULL);
if (rc)
goto hard_fail;
pci_walk_bus(frozen_bus, eeh_report_reset, 0);
pci_walk_bus(frozen_bus, eeh_report_reset, NULL);
}

/* Tell all device drivers that they can resume operations */
pci_walk_bus(frozen_bus, eeh_report_resume, 0);
pci_walk_bus(frozen_bus, eeh_report_resume, NULL);

return;

Expand All @@ -367,7 +367,7 @@ void handle_eeh_events (struct eeh_event *event)
eeh_slot_error_detail(frozen_pdn, 2 /* Permanent Error */);

/* Notify all devices that they're about to go down. */
pci_walk_bus(frozen_bus, eeh_report_failure, 0);
pci_walk_bus(frozen_bus, eeh_report_failure, NULL);

/* Shut down the device drivers for good. */
pcibios_remove_pci_devices(frozen_bus);
Expand Down

0 comments on commit 7f1e1bf

Please sign in to comment.