mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Alexander Shiyan <shc_work@mail.ru>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] of: Fix of_find_node_by_path breakage
Date: Fri, 25 Jan 2013 19:25:24 +0100	[thread overview]
Message-ID: <20130125182524.GP1906@pengutronix.de> (raw)
In-Reply-To: <1359113609-14606-1-git-send-email-shc_work@mail.ru>

On Fri, Jan 25, 2013 at 03:33:29PM +0400, Alexander Shiyan wrote:
> 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>

Applied, thanks

Sascha

> ---
>  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
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      reply	other threads:[~2013-01-25 18:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-01-25 11:33 Alexander Shiyan
2013-01-25 18:25 ` Sascha Hauer [this message]

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=20130125182524.GP1906@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=shc_work@mail.ru \
    /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