Replace device_get by device_find so it's clear a device needs to be found 
present
in the device list.

Signed-off-by: Hans Dedecker <dedec...@gmail.com>
---
v1 -> v2 : Remove extra white line in netifd_handle_set_state

 system-linux.c | 2 +-
 ubus.c         | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/system-linux.c b/system-linux.c
index eb785b5..d868c15 100644
--- a/system-linux.c
+++ b/system-linux.c
@@ -548,7 +548,7 @@ handle_hotplug_msg(char *data, int size)
        return;
 
 found:
-       dev = device_get(interface, false);
+       dev = device_find(interface);
        if (!dev)
                return;
 
diff --git a/ubus.c b/ubus.c
index 4184301..74cdf28 100644
--- a/ubus.c
+++ b/ubus.c
@@ -290,7 +290,7 @@ netifd_handle_set_state(struct ubus_context *ctx, struct 
ubus_object *obj,
        if (!cur)
                return UBUS_STATUS_INVALID_ARGUMENT;
 
-       dev = device_get(blobmsg_data(cur), false);
+       dev = device_find(blobmsg_data(cur));
        if (!dev)
                return UBUS_STATUS_NOT_FOUND;
 
-- 
1.9.1
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Reply via email to