aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r--arch/powerpc/kernel/eeh.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/eeh.c b/arch/powerpc/kernel/eeh.c
index c865c5f54b18..a29cf473fadf 100644
--- a/arch/powerpc/kernel/eeh.c
+++ b/arch/powerpc/kernel/eeh.c
@@ -720,6 +720,17 @@ int __init eeh_init(void)
720 return -EINVAL; 720 return -EINVAL;
721 } 721 }
722 722
723 /*
724 * Call platform post-initialization. Actually, It's good chance
725 * to inform platform that EEH is ready to supply service if the
726 * I/O cache stuff has been built up.
727 */
728 if (eeh_ops->post_init) {
729 ret = eeh_ops->post_init();
730 if (ret)
731 return ret;
732 }
733
723 if (eeh_subsystem_enabled) 734 if (eeh_subsystem_enabled)
724 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n"); 735 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
725 else 736 else