From 8f71737b1551d32e6e0f4c439940b2862a8a428c Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 26 Jun 2014 12:04:15 +0200 Subject: [PATCH] system-dummy: set present flags on all devices Signed-off-by: Felix Fietkau --- system-dummy.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/system-dummy.c b/system-dummy.c index 66b3ae6..8bcebc1 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -90,11 +90,8 @@ void system_if_clear_state(struct device *dev) int system_if_check(struct device *dev) { dev->ifindex = 0; - - if (!strcmp(dev->ifname, "eth0")) { - device_set_present(dev, true); - device_set_link(dev, true); - } + device_set_present(dev, true); + device_set_link(dev, true); return 0; } @@ -102,9 +99,6 @@ int system_if_check(struct device *dev) struct device * system_if_get_parent(struct device *dev) { - if (!strcmp(dev->ifname, "eth0")) - return device_get("eth1", true); - return NULL; } -- 2.11.0