diff options
author | Linas Vepstas <linas@austin.ibm.com> | 2007-05-08 19:34:40 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-09 02:35:01 -0400 |
commit | b455b24cf2512e9578a4ddd66ec91c3100c78127 (patch) | |
tree | 4066aed9dee5acb9eb6687f2eb4d232815f08757 /arch/powerpc/platforms/pseries | |
parent | ede8ca269f9f3e3fa4fb8561671f0699eefc32c5 (diff) |
[POWERPC] EEH: Split up long error msg
Make some minor adjustments to the EEH error messages.
Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/pseries')
-rw-r--r-- | arch/powerpc/platforms/pseries/eeh_driver.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/powerpc/platforms/pseries/eeh_driver.c b/arch/powerpc/platforms/pseries/eeh_driver.c index e5b7635202fd..f07d849cfc84 100644 --- a/arch/powerpc/platforms/pseries/eeh_driver.c +++ b/arch/powerpc/platforms/pseries/eeh_driver.c | |||
@@ -362,9 +362,11 @@ struct pci_dn * handle_eeh_events (struct eeh_event *event) | |||
362 | } | 362 | } |
363 | 363 | ||
364 | printk(KERN_WARNING | 364 | printk(KERN_WARNING |
365 | "EEH: This PCI device has failed %d times since last reboot: " | 365 | "EEH: This PCI device has failed %d times in the last hour:\n", |
366 | "location=%s driver=%s pci addr=%s\n", | 366 | frozen_pdn->eeh_freeze_count); |
367 | frozen_pdn->eeh_freeze_count, location, drv_str, pci_str); | 367 | printk(KERN_WARNING |
368 | "EEH: location=%s driver=%s pci addr=%s\n", | ||
369 | location, drv_str, pci_str); | ||
368 | 370 | ||
369 | /* Walk the various device drivers attached to this slot through | 371 | /* Walk the various device drivers attached to this slot through |
370 | * a reset sequence, giving each an opportunity to do what it needs | 372 | * a reset sequence, giving each an opportunity to do what it needs |