From: Felix Fietkau Date: Thu, 26 Jun 2014 10:04:15 +0000 (+0200) Subject: system-dummy: set present flags on all devices X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8f71737b1551d32e6e0f4c439940b2862a8a428c;p=oweals%2Fnetifd.git system-dummy: set present flags on all devices Signed-off-by: Felix Fietkau --- 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; }