diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-06-10 14:31:02 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-06-10 14:40:22 +0200 |
commit | d095bf24cf7879150d008c23998676bfedebbde6 (patch) | |
tree | ab7f853f8a7ba00039cd714144a738f8c0927f28 /device.h | |
parent | bac6f28ce1d9abc381c2f85c32bcd37c33cd00c8 (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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |