From e72c88e71b64b2ef7061656be144738f7bf8ccb9 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Sat, 27 Jul 2013 07:40:18 +0200 Subject: of: net: Use correct devicetree in eth_of_fixup eth_of_fixup() is passed a devicetree, so use this one instead of the internal devicetree. This makes sure it also works when the tree to fixup is not the internal one. Signed-off-by: Sascha Hauer --- net/eth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net') diff --git a/net/eth.c b/net/eth.c index 09b3bd5b20..e94689ad8a 100644 --- a/net/eth.c +++ b/net/eth.c @@ -296,7 +296,7 @@ static int eth_of_fixup(struct device_node *root) continue; } - node = of_find_node_by_path(edev->nodepath); + node = of_find_node_by_path_from(root, edev->nodepath); if (!node) { dev_dbg(&edev->dev, "%s: fixup node %s not found\n", __func__, edev->nodepath); -- cgit v1.2.3