summaryrefslogtreecommitdiffhomepage
path: root/device.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-06-10 14:31:02 +0200
committerFelix Fietkau <nbd@openwrt.org>2013-06-10 14:40:22 +0200
commitd095bf24cf7879150d008c23998676bfedebbde6 (patch)
treeab7f853f8a7ba00039cd714144a738f8c0927f28 /device.h
parentbac6f28ce1d9abc381c2f85c32bcd37c33cd00c8 (diff)
config: use the new uci_blob library code
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'device.h')
-rw-r--r--device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/device.h b/device.h
index 1068a46..a1eee7f 100644
--- a/device.h
+++ b/device.h
@@ -45,7 +45,7 @@ struct device_type {
struct list_head list;
const char *name;
- const struct config_param_list *config_params;
+ const struct uci_blob_param_list *config_params;
struct device *(*create)(const char *name, struct blob_attr *attr);
void (*config_init)(struct device *);
@@ -148,7 +148,7 @@ struct device_hotplug_ops {
int (*del)(struct device *main, struct device *member);
};
-extern const struct config_param_list device_attr_list;
+extern const struct uci_blob_param_list device_attr_list;
extern const struct device_type simple_device_type;
extern const struct device_type bridge_device_type;
extern const struct device_type tunnel_device_type;