浏览代码

bus: mvebu-mbus: make use of of_find_matching_node_and_match

Instead of the of_find_matching_node()/of_match_node() pair, which requires two
iterations through the match table, make use of of_find_matching_node_and_match(),
which only iterates through the table once.

Signed-off-by: Josh Cartwright <joshc@codeaurora.org>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Josh Cartwright 11 年之前
父节点
当前提交
087a4ab272
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      drivers/bus/mvebu-mbus.c

+ 1 - 2
drivers/bus/mvebu-mbus.c

@@ -890,13 +890,12 @@ int __init mvebu_mbus_dt_init(void)
 	const __be32 *prop;
 	const __be32 *prop;
 	int ret;
 	int ret;
 
 
-	np = of_find_matching_node(NULL, of_mvebu_mbus_ids);
+	np = of_find_matching_node_and_match(NULL, of_mvebu_mbus_ids, &of_id);
 	if (!np) {
 	if (!np) {
 		pr_err("could not find a matching SoC family\n");
 		pr_err("could not find a matching SoC family\n");
 		return -ENODEV;
 		return -ENODEV;
 	}
 	}
 
 
-	of_id = of_match_node(of_mvebu_mbus_ids, np);
 	mbus_state.soc = of_id->data;
 	mbus_state.soc = of_id->data;
 
 
 	prop = of_get_property(np, "controller", NULL);
 	prop = of_get_property(np, "controller", NULL);