From f56a7fbaa6f155c654e7d01b5c4c0594f21239d6 Mon Sep 17 00:00:00 2001 From: Arne Kappen Date: Thu, 18 Aug 2016 11:35:28 +0200 Subject: device: prepare for adding device handlers dynamically - remove const from device handler struct - pass device handler type to create function Signed-off-by: Arne Kappen Signed-off-by: Felix Fietkau [cleanup] --- macvlan.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'macvlan.c') diff --git a/macvlan.c b/macvlan.c index a0f11ae..ffadfd4 100644 --- a/macvlan.c +++ b/macvlan.c @@ -228,7 +228,8 @@ macvlan_reload(struct device *dev, struct blob_attr *attr) } static struct device * -macvlan_create(const char *name, struct blob_attr *attr) +macvlan_create(const char *name, struct device_type *devtype, + struct blob_attr *attr) { struct macvlan_device *mvdev; struct device *dev = NULL; @@ -238,7 +239,7 @@ macvlan_create(const char *name, struct blob_attr *attr) return NULL; dev = &mvdev->dev; - device_init(dev, &macvlan_device_type, name); + device_init(dev, devtype, name); dev->config_pending = true; mvdev->set_state = dev->set_state; @@ -252,7 +253,7 @@ macvlan_create(const char *name, struct blob_attr *attr) return dev; } -const struct device_type macvlan_device_type = { +struct device_type macvlan_device_type = { .name = "MAC VLAN", .config_params = &macvlan_attr_list, .create = macvlan_create, -- cgit v1.2.1