diff options
-rw-r--r-- | system-dummy.c | 10 |
1 files 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; } |