From: Marcel Holtmann Date: Wed, 24 Dec 2008 09:47:05 +0000 (+0100) Subject: Add functions for handling device driver data X-Git-Tag: 0.6~159 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=180502c98a76dff1ac48b4de5203fff4b6644418;p=platform%2Fupstream%2Fconnman.git Add functions for handling device driver data --- 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;