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

Commit 5444d639 authored by Wei Yongjun's avatar Wei Yongjun Committed by Kumar Gala
Browse files

powerpc/85xx: use for_each_compatible_node() macro



Use for_each_compatible_node() macro instead of open coding it.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarGrant Likely <grant.likely@secretlab.ca>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent 6cce76dc
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -206,9 +206,7 @@ static void __init mpc85xx_mds_reset_ucc_phys(void)
		setbits8(&bcsr_regs[7], BCSR7_UCC12_GETHnRST);
		clrbits8(&bcsr_regs[8], BCSR8_UEM_MARVELL_RST);

		for (np = NULL; (np = of_find_compatible_node(np,
						"network",
						"ucc_geth")) != NULL;) {
		for_each_compatible_node(np, "network", "ucc_geth") {
			const unsigned int *prop;
			int ucc_num;