From: Hans Dedecker Date: Mon, 6 Jun 2016 12:58:33 +0000 (+0200) Subject: system-linux: Replace device_get by device_find where appropriate X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=99e6dc68bbac5a57a0ebca810a9dc36e38667821 system-linux: Replace device_get by device_find where appropriate 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 --- 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;