Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 60ea89e2 authored by Wei Yongjun's avatar Wei Yongjun Committed by David Woodhouse
Browse files

mtd: ofpart: use for_each_child_of_node() macro



Use for_each_child_of_node() macro instead of open coding it.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarHuang Shijie <b32955@freescale.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 3156231f
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -43,9 +43,8 @@ static int parse_ofpart_partitions(struct mtd_info *master,
		return 0;

	/* First count the subnodes */
	pp = NULL;
	nr_parts = 0;
	while ((pp = of_get_next_child(node, pp))) {
	for_each_child_of_node(node,  pp) {
		if (node_has_compatible(pp))
			continue;

@@ -59,9 +58,8 @@ static int parse_ofpart_partitions(struct mtd_info *master,
	if (!*pparts)
		return -ENOMEM;

	pp = NULL;
	i = 0;
	while ((pp = of_get_next_child(node, pp))) {
	for_each_child_of_node(node,  pp) {
		const __be32 *reg;
		int len;
		int a_cells, s_cells;