|
@@ -37,11 +37,8 @@ static int parse_ofpart_partitions(struct mtd_info *master,
|
|
|
bool dedicated = true;
|
|
|
|
|
|
|
|
|
- /*
|
|
|
- * of_node can be provided through auxiliary parser data or (preferred)
|
|
|
- * by assigning the master device node
|
|
|
- */
|
|
|
- mtd_node = data && data->of_node ? data->of_node : mtd_get_of_node(master);
|
|
|
+ /* Pull of_node from the master device node */
|
|
|
+ mtd_node = mtd_get_of_node(master);
|
|
|
if (!mtd_node)
|
|
|
return 0;
|
|
|
|
|
@@ -150,11 +147,8 @@ static int parse_ofoldpart_partitions(struct mtd_info *master,
|
|
|
} *part;
|
|
|
const char *names;
|
|
|
|
|
|
- /*
|
|
|
- * of_node can be provided through auxiliary parser data or (preferred)
|
|
|
- * by assigning the master device node
|
|
|
- */
|
|
|
- dp = data && data->of_node ? data->of_node : mtd_get_of_node(master);
|
|
|
+ /* Pull of_node from the master device node */
|
|
|
+ dp = mtd_get_of_node(master);
|
|
|
if (!dp)
|
|
|
return 0;
|
|
|
|