diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-12-04 20:16:14 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-12-04 20:16:14 +0100 |
commit | 8d18904bc241fef09ad6e8b7c2e1f93a4b4bb082 (patch) | |
tree | c627e6813d14ffa49f4158490c235a4d30af5081 | |
parent | 581c0d568f6fa7348a164077d761a04d0bb2b4e8 (diff) |
add dummy code for testing system_if_get_parent()
-rw-r--r-- | system-dummy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/system-dummy.c b/system-dummy.c index 7d651a5..09d1806 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -82,6 +82,9 @@ 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; } |