From: Alexander Shiyan <shc_work@mail.ru>
To: barebox@lists.infradead.org
Subject: [PATCH] of: Fix of_find_node_by_path breakage
Date: Fri, 25 Jan 2013 15:33:29 +0400 [thread overview]
Message-ID: <1359113609-14606-1-git-send-email-shc_work@mail.ru> (raw)
This patch fixes breakage of of_find_node_by_path when
node not found in tree. This fault is caused, for example,
when no aliases is present in dtb.
barebox@ConnectCore i.MX51:/ oftree -d /env/mm.dtb
/ {
model = "Freescale i.MX51 CCMX51";
compatible = "fsl,imx51-ccmx51", "fsl,imx51";
chosen {
};
cpus {
cpu@0 {
compatible = "arm,cortex-a8";
};
};
};
barebox@ConnectCore i.MX51:/ oftree -p /env/mm.dtb
unable to handle NULL pointer dereference at address 0x00000000
pc : [<97f1f3f0>] lr : [<97f19438>]
sp : 95eff988 ip : 00000001 fp : 97f43080
r10: 00000000 r9 : 97f4304c r8 : 00000000
r7 : 00000000 r6 : e3510034 r5 : 00000001 r4 : 95f0eb28
r3 : 97f43054 r2 : 00000000 r1 : e1a0000b r0 : 00000000
Flags: nzCv IRQs off FIQs off Mode SVC_32
no stack data available
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
drivers/of/base.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 7a41618..576841d 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -487,9 +487,9 @@ struct device_node *of_find_node_by_path(const char *path)
list_for_each_entry(np, &allnodes, list) {
if (np->full_name && (strcmp(np->full_name, path) == 0))
- break;
+ return np;
}
- return np;
+ return NULL;
}
EXPORT_SYMBOL(of_find_node_by_path);
--
1.7.3.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2013-01-25 11:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-25 11:33 Alexander Shiyan [this message]
2013-01-25 18:25 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1359113609-14606-1-git-send-email-shc_work@mail.ru \
--to=shc_work@mail.ru \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox