From: Michael Ellerman Date: Tue, 9 Aug 2005 05:20:18 +0000 (+1000) Subject: [PATCH] ppc64: Fix a misleading printk in unflatten_dt_node() X-Git-Tag: v2.6.14-rc1~1037^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=145ec7d51ae507c7cc8889ad05e24af05bbd9147;p=platform%2Fkernel%2Flinux-exynos.git [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 arch/ppc64/kernel/prom.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Signed-off-by: Paul Mackerras --- diff --git a/arch/ppc64/kernel/prom.c b/arch/ppc64/kernel/prom.c index 255c39a..04b852d 100644 --- a/arch/ppc64/kernel/prom.c +++ b/arch/ppc64/kernel/prom.c @@ -918,7 +918,7 @@ static unsigned long __init unflatten_dt_node(unsigned long mem, tag = *((u32 *)(*p)); } if (tag != OF_DT_END_NODE) { - printk("Weird tag at start of node: %x\n", tag); + printk("Weird tag at end of node: %x\n", tag); return mem; } *p += 4;