summaryrefslogtreecommitdiff
path: root/include/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/device.h')
-rw-r--r--include/device.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/device.h b/include/device.h
index e59eb3e6..1645a085 100644
--- a/include/device.h
+++ b/include/device.h
@@ -78,6 +78,17 @@ struct connman_device {
extern int connman_device_set_powered(struct connman_device *device,
gboolean powered);
+static inline void *connman_device_get_data(struct connman_device *device)
+{
+ return device->driver_data;
+}
+
+static inline void connman_device_set_data(struct connman_device *device,
+ void *data)
+{
+ device->driver_data = data;
+}
+
struct connman_device_driver {
const char *name;
enum connman_device_type type;