[PATCH] ppc64: Fix a misleading printk in unflatten_dt_node()

When unflatten_dt_node() fails to find an OF_DT_END_NODE tag it prints
"Weird tag at start of node", this should be "Weird tag at end of node".

Signed-off-by: Michael Ellerman <michael@ellerman.id.au>

arch/ppc64/kernel/prom.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Signed-off-by: Paul Mackerras <paulus@samba.org>

authored by

Michael Ellerman and committed by
Paul Mackerras
145ec7d5 180a3362

+1 -1
+1 -1
arch/ppc64/kernel/prom.c
··· 918 918 tag = *((u32 *)(*p)); 919 919 } 920 920 if (tag != OF_DT_END_NODE) { 921 - printk("Weird tag at start of node: %x\n", tag); 921 + printk("Weird tag at end of node: %x\n", tag); 922 922 return mem; 923 923 } 924 924 *p += 4;