ofpart: Partitions at same address cannot have the same name
Benjamin Krill
ben at codiert.org
Thu Apr 23 03:10:30 EST 2009
>--- a/drivers/mtd/ofpart.c
>+++ b/drivers/mtd/ofpart.c
>@@ -48,7 +48,7 @@ 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 (strncmp(partname, "partition", strlen("partition") != 0) {
Hi Recardo,
I would suggest to do:
if (strcmp(partname, "partition") <= 0) {
cheers
ben
More information about the Linuxppc-dev
mailing list