diff options
author | Tony Breeds <[email protected]> | 2008-12-15 18:34:43 +0000 |
---|---|---|
committer | Paul Mackerras <[email protected]> | 2008-12-21 14:21:15 +1100 |
commit | 532774ec7fa396da20ca724c0cf83d93ee76622f (patch) | |
tree | d8f155224fa105c0fb13a1b88ddff749fa6924b5 | |
parent | 7a2eab0d4e656341cc0f6481d722d410f0414f0b (diff) |
powerpc: Pass a valid token to rtas_call() in phyp-dump code
ibm_configure_kernel_dump is passed as the token to rtas_call() is
never initialised. This sets it to something sane.
Signed-off-by: Tony Breeds <[email protected]>
Acked-by: Nathan Lynch <[email protected]>
Acked-by: Manish Ahuja <[email protected]>
Signed-off-by: Paul Mackerras <[email protected]>
-rw-r--r-- | arch/powerpc/platforms/pseries/phyp_dump.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/pseries/phyp_dump.c b/arch/powerpc/platforms/pseries/phyp_dump.c index 16e659a71440..6cf35cd8d0b5 100644 --- a/arch/powerpc/platforms/pseries/phyp_dump.c +++ b/arch/powerpc/platforms/pseries/phyp_dump.c @@ -414,6 +414,8 @@ static int __init phyp_dump_setup(void) of_node_put(rtas); } + ibm_configure_kernel_dump = rtas_token("ibm,configure-kernel-dump"); + print_dump_header(dump_header); dump_area_length = init_dump_header(&phdr); /* align down */ |