diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-07-29 19:25:12 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-07-29 19:25:12 +0200 |
commit | 0b461898555d81efe1b57ec1cd9b9b1529cecd0f (patch) | |
tree | 4b7f8ab7e8079b26301a1a6d32dfa4f975a70cf6 /ubus.c | |
parent | c1b3cab4e1916f49e1f9e1868c698bf391029684 (diff) |
s/get_device/device_get/
Diffstat (limited to 'ubus.c')
-rw-r--r-- | ubus.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ static int netifd_handle_device(struct ubus_context *ctx, struct ubus_object *ob if (!tb[DEV_NAME]) return UBUS_STATUS_INVALID_ARGUMENT; - dev = get_device(blobmsg_data(tb[DEV_NAME]), false); + dev = device_get(blobmsg_data(tb[DEV_NAME]), false); if (!dev) return UBUS_STATUS_NOT_FOUND; |