summaryrefslogtreecommitdiffstats
path: root/include/modem.h
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2009-08-30 15:32:08 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-08-30 15:32:08 -0500
commit9967c407fa6edf276e870994a0c0c7bc6a906cc7 (patch)
treea54d678588d0e12d6b0cd2e66621c373e2a35a7d /include/modem.h
parent34b73ace7822abb1ee8b6183e60458ec0ddc05bf (diff)
downloadofono-9967c407fa6edf276e870994a0c0c7bc6a906cc7.tar.bz2
Reformat comments a little
Diffstat (limited to 'include/modem.h')
-rw-r--r--include/modem.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/include/modem.h b/include/modem.h
index 43030248..f4843307 100644
--- a/include/modem.h
+++ b/include/modem.h
@@ -51,18 +51,20 @@ ofono_bool_t ofono_modem_get_powered(struct ofono_modem *modem);
struct ofono_modem_driver {
const char *name;
- /* probe - Detect existence of device and initialize any
- * device-specific data structures */
+ /* Detect existence of device and initialize any device-specific data
+ * structures */
int (*probe)(struct ofono_modem *modem);
- /* remove - Destroy data structures allocated during probe */
+
+ /* Destroy data structures allocated during probe and cleanup */
int (*remove)(struct ofono_modem *modem);
- /* enable - Power up device */
+ /* Power up device */
int (*enable)(struct ofono_modem *modem);
- /* disable - Power down device */
+
+ /* Power down device */
int (*disable)(struct ofono_modem *modem);
- /* populate - Populate the atoms supported by this device */
+ /* Populate the atoms supported by this device */
int (*populate)(struct ofono_modem *modem);
};