aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/ibm_newemac/core.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/net/ibm_newemac/core.c b/drivers/net/ibm_newemac/core.c
index c30348e402d5..7c66727359d4 100644
--- a/drivers/net/ibm_newemac/core.c
+++ b/drivers/net/ibm_newemac/core.c
@@ -2562,8 +2562,11 @@ static int __devinit emac_probe(struct of_device *ofdev,
2562 struct device_node **blist = NULL; 2562 struct device_node **blist = NULL;
2563 int err, i; 2563 int err, i;
2564 2564
2565 /* Skip unused/unwired EMACS */ 2565 /* Skip unused/unwired EMACS. We leave the check for an unused
2566 if (of_get_property(np, "unused", NULL)) 2566 * property here for now, but new flat device trees should set a
2567 * status property to "disabled" instead.
2568 */
2569 if (of_get_property(np, "unused", NULL) || !of_device_is_available(np))
2567 return -ENODEV; 2570 return -ENODEV;
2568 2571
2569 /* Find ourselves in the bootlist if we are there */ 2572 /* Find ourselves in the bootlist if we are there */