Commit 70c6cc37 authored by Linas Vepstas's avatar Linas Vepstas Committed by Paul Mackerras

[POWERPC] prom.c whitespace cleanup

Whitespace cleanup: badly indented lines.
Signed-off-by: default avatarLinas Vepstas <linas@austin.ibm.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent e788ff13
...@@ -779,13 +779,13 @@ static int __init early_init_dt_scan_chosen(unsigned long node, ...@@ -779,13 +779,13 @@ static int __init early_init_dt_scan_chosen(unsigned long node,
#endif #endif
#ifdef CONFIG_KEXEC #ifdef CONFIG_KEXEC
lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-base", NULL); lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-base", NULL);
if (lprop) if (lprop)
crashk_res.start = *lprop; crashk_res.start = *lprop;
lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-size", NULL); lprop = (u64*)of_get_flat_dt_prop(node, "linux,crashkernel-size", NULL);
if (lprop) if (lprop)
crashk_res.end = crashk_res.start + *lprop - 1; crashk_res.end = crashk_res.start + *lprop - 1;
#endif #endif
early_init_dt_check_for_initrd(node); early_init_dt_check_for_initrd(node);
......
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