summaryrefslogtreecommitdiffstats
path: root/src/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/device.h')
-rw-r--r--src/device.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/device.h b/src/device.h
index 33acfbb..e44c695 100644
--- a/src/device.h
+++ b/src/device.h
@@ -1,7 +1,6 @@
#pragma once
-#include "config-ini.h"
-
+#include <json-c/json.h>
#include <libubox/avl.h>
extern struct avl_tree device_types;
@@ -15,7 +14,7 @@ typedef struct _device {
struct _device_type {
struct avl_node node;
- device_t * (*process_config)(const char *name, const ini_file_t *config);
+ device_t * (*process_config)(const char *name, struct json_object *config);
void (*free)(device_t *device);
void (*init)(device_t *device);