gnokii-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-38


From: Daniele Forsi
Subject: [SCM] libgnokii and core programs branch, master, updated. rel_0_6_29-381-ge756237
Date: Wed, 07 Mar 2012 18:00:06 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "libgnokii and core programs".

The branch, master has been updated
       via  e75623775e5cd79ebdae5f861f4a5af6d69ca0cd (commit)
      from  4c53ac4878f342b7271e82b94ffa668876c1a494 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/gnokii.git/commit/?id=e75623775e5cd79ebdae5f861f4a5af6d69ca0cd


commit e75623775e5cd79ebdae5f861f4a5af6d69ca0cd
Author: Daniele Forsi <address@hidden>
Date:   Wed Mar 7 18:59:15 2012 +0100

    Add support for phonebook memory SD (Service Dialling Numbers) to nk7110 
driver

diff --git a/ChangeLog b/ChangeLog
index b970aa2..4dcedfa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -45,6 +45,8 @@
  * nk7110 driver updates
     o return more specific error codes for GN_OP_ReadPhonebook and
       for GN_OP_GetSMSCenter failures               (Daniele Forsi)
+    o add support for phonebook memory SD (Service Dialling
+      Numbers)                                      (Daniele Forsi)
 
 0.6.31
 ======
diff --git a/common/phones/nk7110.c b/common/phones/nk7110.c
index 88bcce0..1b8ba62 100644
--- a/common/phones/nk7110.c
+++ b/common/phones/nk7110.c
@@ -3032,6 +3032,9 @@ static int get_memory_type(gn_memory_type memory_type)
        case GN_MT_MC:
                result = NK7110_MEMORY_MC;
                break;
+       case GN_MT_SD:
+               result = NK7110_MEMORY_SD;
+               break;
        case GN_MT_IN:
                result = NK7110_MEMORY_IN;
                break;
@@ -3140,6 +3143,9 @@ static gn_memory_type get_gn_memory_type(int memory_type)
        case NK7110_MEMORY_MC:
                result = GN_MT_MC;
                break;
+       case NK7110_MEMORY_SD:
+               result = GN_MT_SD;
+               break;
        case NK7110_MEMORY_IN:
                result = GN_MT_IN;
                break;
diff --git a/include/phones/nk7110.h b/include/phones/nk7110.h
index f97ce9e..2cdad14 100644
--- a/include/phones/nk7110.h
+++ b/include/phones/nk7110.h
@@ -124,6 +124,7 @@ typedef enum {
 #define NK7110_MEMORY_EN               0x08    /* ?? SIM (or ME) emergency 
number */
 #define NK7110_MEMORY_MT               0x09    /* ?? combined ME and SIM 
phonebook */
 #define NK7110_MEMORY_VOICE            0x0b    /* Voice Mailbox */
+#define NK7110_MEMORY_SD               0x0c    /* SIM Service Dialling Numbers 
*/
 #define NK7110_MEMORY_SPEEDDIALS       0x0e    /* Speed dials */
 #define NK7110_MEMORY_GROUPS           0x10    /* Caller groups */
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog               |    2 ++
 common/phones/nk7110.c  |    6 ++++++
 include/phones/nk7110.h |    1 +
 3 files changed, 9 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
libgnokii and core programs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]