summaryrefslogtreecommitdiffstats
path: root/plugins/ifx.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2012-11-23 16:41:23 +0100
committerMarcel Holtmann <marcel@holtmann.org>2012-11-23 16:41:23 +0100
commitd36e4b7580a5096d6e421368a662f8335e179245 (patch)
tree7ef5e735d8f5e5178d77b828aab40ccc1ff67ff6 /plugins/ifx.c
parent48a5fec5cc4f96d8bf921bd6de1cb68d58d75d0f (diff)
downloadofono-d36e4b7580a5096d6e421368a662f8335e179245.tar.bz2
ifx: Add comments about unhandled SIM states
Diffstat (limited to 'plugins/ifx.c')
-rw-r--r--plugins/ifx.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/ifx.c b/plugins/ifx.c
index 5b70f429..cf6f322f 100644
--- a/plugins/ifx.c
+++ b/plugins/ifx.c
@@ -159,6 +159,12 @@ static void ifx_set_sim_state(struct ifx_data *data, int state)
data->have_sim = TRUE;
}
break;
+ case 10: /* SIM Reactivating */
+ case 11: /* SIM Reactivated */
+ case 12: /* SIM SMS Caching Completed */
+ case 99: /* SIM State Unknown */
+ ofono_warn("Unhandled SIM state %d received", state);
+ break;
default:
ofono_warn("Unknown SIM state %d received", state);
break;