summaryrefslogtreecommitdiff
path: root/tunnel.c
diff options
context:
space:
mode:
authorHans Dedecker <dedeckeh@gmail.com>2016-09-23 15:08:20 +0200
committerFelix Fietkau <nbd@nbd.name>2016-09-26 11:51:19 +0200
commitc22fe6777381e368f5e9ca3ef7b4258c4a2754b5 (patch)
tree03604a4746e520b671ac437dcbaa884fdee41464 /tunnel.c
parent9905bd411c13ff151cf90ddf9ea3041c5f0e56fb (diff)
downloadnetifd-c22fe6777381e368f5e9ca3ef7b4258c4a2754b5.tar.gz
tunnel: Use tunnel as device type name
Fixes creation of tunnel devices by UCI due to device handlers rework Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Diffstat (limited to 'tunnel.c')
-rw-r--r--tunnel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tunnel.c b/tunnel.c
index 32f3613..3fa3e21 100644
--- a/tunnel.c
+++ b/tunnel.c
@@ -90,7 +90,7 @@ tunnel_free(struct device *dev)
}
struct device_type tunnel_device_type = {
- .name = "IP tunnel",
+ .name = "tunnel",
.config_params = &tunnel_attr_list,
.reload = tunnel_reload,
.create = tunnel_create,