From 180502c98a76dff1ac48b4de5203fff4b6644418 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 24 Dec 2008 10:47:05 +0100 Subject: [PATCH] Add functions for handling device driver data --- include/device.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/include/device.h b/include/device.h index e59eb3e..1645a08 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; -- 2.7.4