Commit eaa1db04 authored by Paul Mackerras's avatar Paul Mackerras Committed by Linus Torvalds

[PATCH] ppc64: set ppc_md.log_error

We have a platform-specific function pointer on ppc64 for a function to log
errors detected by the platform, but it was never getting set.  This patch
sets it on pSeries (the only ppc64 platform which has an error logging
function).
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 74713893
...@@ -243,6 +243,8 @@ chrp_init(unsigned long r3, unsigned long r4, unsigned long r5, ...@@ -243,6 +243,8 @@ chrp_init(unsigned long r3, unsigned long r4, unsigned long r5,
ppc_md.get_irq = xics_get_irq; ppc_md.get_irq = xics_get_irq;
} }
ppc_md.log_error = pSeries_log_error;
ppc_md.init = chrp_init2; ppc_md.init = chrp_init2;
ppc_md.pcibios_fixup = pSeries_final_fixup; ppc_md.pcibios_fixup = pSeries_final_fixup;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment