[PATCH] [MTD] ofpart: Partitions at same address cannot have the same name v3
Benjamin Krill
ben at codiert.org
Mon Apr 27 17:09:32 EST 2009
>--- a/drivers/mtd/ofpart.c
>+++ b/drivers/mtd/ofpart.c
>@@ -48,7 +48,9 @@ int __devinit of_mtd_parse_partitions(struct device *dev,
>
> /* check if this is a partition node */
> partname = of_get_property(pp, "name", &len);
>- if (strcmp(partname, "partition") != 0) {
>+ if ((strcmp(partname, "partition") != 0) &&
>+ (of_device_is_compatible(pp, "partition") != 1))
>+ {
> nr_parts--;
> continue;
> }
If this is the way, how to go, you get my ack.
Acked-by: Benjamin Krill <ben at codiert.org>
More information about the Linuxppc-dev
mailing list