diff options
author | Arne Kappen <akappen@inet.tu-berlin.de> | 2016-08-18 11:35:28 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-08-26 10:38:46 +0200 |
commit | f56a7fbaa6f155c654e7d01b5c4c0594f21239d6 (patch) | |
tree | 08e2b400aa2d70cf9655274c5f7885623acdcf40 /vlandev.c | |
parent | 61e5fa84eca4176bc5b4f9769a5af79d85cf11c6 (diff) |
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 <akappen@inet.tu-berlin.de>
Signed-off-by: Felix Fietkau <nbd@nbd.name> [cleanup]
Diffstat (limited to 'vlandev.c')
-rw-r--r-- | vlandev.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -216,7 +216,8 @@ vlandev_reload(struct device *dev, struct blob_attr *attr) } static struct device * -vlandev_create(const char *name, struct blob_attr *attr) +vlandev_create(const char *name, struct device_type *devtype, + struct blob_attr *attr) { struct vlandev_device *mvdev; struct device *dev = NULL; @@ -226,7 +227,7 @@ vlandev_create(const char *name, struct blob_attr *attr) return NULL; dev = &mvdev->dev; - device_init(dev, &vlandev_device_type, name); + device_init(dev, devtype, name); dev->config_pending = true; mvdev->set_state = dev->set_state; @@ -240,7 +241,7 @@ vlandev_create(const char *name, struct blob_attr *attr) return dev; } -const struct device_type vlandev_device_type = { +struct device_type vlandev_device_type = { .name = "VLANDEV", .config_params = &vlandev_attr_list, .create = vlandev_create, |