sms: Add some documentation
authorInaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
Wed, 26 May 2010 19:49:23 +0000 (12:49 -0700)
committerDenis Kenzior <denkenz@gmail.com>
Fri, 28 May 2010 14:45:56 +0000 (09:45 -0500)
Add doc headers to ofono_sms_{create, register}

src/sms.c

index a7bdcef..c0e9fc4 100644 (file)
--- a/src/sms.c
+++ b/src/sms.c
@@ -906,6 +906,17 @@ static void sms_remove(struct ofono_atom *atom)
        g_free(sms);
 }
 
+
+/*
+ * Create a SMS driver
+ *
+ * This creates a SMS driver that is hung off a @modem
+ * object. However, for the driver to be used by the system, it has to
+ * be registered with the oFono core using ofono_sms_register().
+ *
+ * This is done once the modem driver determines that SMS is properly
+ * supported by the hardware.
+ */
 struct ofono_sms *ofono_sms_create(struct ofono_modem *modem,
                                        unsigned int vendor,
                                        const char *driver,
@@ -976,6 +987,14 @@ static void sms_load_settings(struct ofono_sms *sms, const char *imsi)
 
 }
 
+
+/*
+ * Indicate oFono that a SMS driver is ready for operation
+ *
+ * This is called after ofono_sms_create() was done and the modem
+ * driver determined that a modem supports SMS correctly. Once this
+ * call succeeds, the D-BUS interface for SMS goes live.
+ */
 void ofono_sms_register(struct ofono_sms *sms)
 {
        DBusConnection *conn = ofono_dbus_get_connection();