linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Check name property to determine partition nodes.
@ 2009-01-23 15:51 Benjamin Krill
  2009-01-23 16:13 ` Benjamin Krill
  0 siblings, 1 reply; 2+ messages in thread
From: Benjamin Krill @ 2009-01-23 15:51 UTC (permalink / raw)
  To: linux-mtd, dwg, linuxppc-dev, vwool

SLOF has a further node which could not be evaluate
by the current routine. The current routine returns
because the node hasn't the required reg property. As
fix this patch adds a check to determine the partition
child nodes.

Signed-off-by: Benjamin Krill <ben@codiert.org>
---
 drivers/mtd/ofpart.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/drivers/mtd/ofpart.c b/drivers/mtd/ofpart.c
index 9e45b3f..c852cc2 100644
--- a/drivers/mtd/ofpart.c
+++ b/drivers/mtd/ofpart.c
@@ -46,6 +46,11 @@ int __devinit of_mtd_parse_partitions(struct device *dev,
 		const u32 *reg;
 		int len;
 
+		/* check if this is a partition node */
+		partname = of_get_property(pp, "name", &len);
+		if (strcmp(partname, "partition") != 0)
+			continue;
+
 		reg = of_get_property(pp, "reg", &len);
 		if (!reg || (len != 2 * sizeof(u32))) {
 			of_node_put(pp);
-- 
1.6.0.6

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] Check name property to determine partition nodes.
  2009-01-23 15:51 [PATCH] Check name property to determine partition nodes Benjamin Krill
@ 2009-01-23 16:13 ` Benjamin Krill
  0 siblings, 0 replies; 2+ messages in thread
From: Benjamin Krill @ 2009-01-23 16:13 UTC (permalink / raw)
  To: linux-mtd, dwg, linuxppc-dev, vwool

I missed a fix in this patch. I will resend it as v2.

cheers
 ben


* Benjamin Krill | 2009-01-23 16:51:42 [+0100]:

>SLOF has a further node which could not be evaluate
>by the current routine. The current routine returns
>because the node hasn't the required reg property. As
>fix this patch adds a check to determine the partition
>child nodes.
>
>Signed-off-by: Benjamin Krill <ben@codiert.org>
>---
> drivers/mtd/ofpart.c |    5 +++++
> 1 files changed, 5 insertions(+), 0 deletions(-)
>
>diff --git a/drivers/mtd/ofpart.c b/drivers/mtd/ofpart.c
>index 9e45b3f..c852cc2 100644
>--- a/drivers/mtd/ofpart.c
>+++ b/drivers/mtd/ofpart.c
>@@ -46,6 +46,11 @@ int __devinit of_mtd_parse_partitions(struct device *dev,
> 		const u32 *reg;
> 		int len;
> 
>+		/* check if this is a partition node */
>+		partname = of_get_property(pp, "name", &len);
>+		if (strcmp(partname, "partition") != 0)
>+			continue;
>+
> 		reg = of_get_property(pp, "reg", &len);
> 		if (!reg || (len != 2 * sizeof(u32))) {
> 			of_node_put(pp);
>-- 
>1.6.0.6
>
>_______________________________________________
>Linuxppc-dev mailing list
>Linuxppc-dev@ozlabs.org
>https://ozlabs.org/mailman/listinfo/linuxppc-dev

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-01-23 16:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-01-23 15:51 [PATCH] Check name property to determine partition nodes Benjamin Krill
2009-01-23 16:13 ` Benjamin Krill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).