From: Hans Dedecker Date: Fri, 23 Sep 2016 13:08:19 +0000 (+0200) Subject: macvlan: Use macvlan as device type name X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=9905bd411c13ff151cf90ddf9ea3041c5f0e56fb macvlan: Use macvlan as device type name Fixes creation of macvlan devices by UCI due to device handlers rework Signed-off-by: Hans Dedecker --- diff --git a/macvlan.c b/macvlan.c index 01a48cd..021d394 100644 --- a/macvlan.c +++ b/macvlan.c @@ -254,7 +254,7 @@ macvlan_create(const char *name, struct device_type *devtype, } static struct device_type macvlan_device_type = { - .name = "MAC VLAN", + .name = "macvlan", .config_params = &macvlan_attr_list, .create = macvlan_create, .config_init = macvlan_config_init,