summaryrefslogtreecommitdiff
path: root/system-dummy.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-06-26 12:04:15 +0200
committerFelix Fietkau <nbd@openwrt.org>2014-06-26 12:04:15 +0200
commit8f71737b1551d32e6e0f4c439940b2862a8a428c (patch)
tree0e8ad8367d601b5b29487c9531babfe1edfcdda6 /system-dummy.c
parent4452867c4b34cb0d9dc7fe9dc42ecc86af887176 (diff)
downloadnetifd-8f71737b1551d32e6e0f4c439940b2862a8a428c.tar.gz
system-dummy: set present flags on all devices
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'system-dummy.c')
-rw-r--r--system-dummy.c10
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;
}