From: Felix Fietkau Date: Sun, 4 Dec 2011 19:16:14 +0000 (+0100) Subject: add dummy code for testing system_if_get_parent() X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=8d18904bc241fef09ad6e8b7c2e1f93a4b4bb082;hp=581c0d568f6fa7348a164077d761a04d0bb2b4e8 add dummy code for testing system_if_get_parent() --- 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; }