summaryrefslogtreecommitdiffstats
path: root/src/modem.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/modem.c')
-rw-r--r--src/modem.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/modem.c b/src/modem.c
index 3dd44ad1..26468e8a 100644
--- a/src/modem.c
+++ b/src/modem.c
@@ -598,13 +598,8 @@ static void sim_state_watch(enum ofono_sim_state new_state, void *user)
switch (new_state) {
case OFONO_SIM_STATE_NOT_PRESENT:
+ modem_change_state(modem, MODEM_STATE_PRE_SIM);
case OFONO_SIM_STATE_INSERTED:
- if (modem->modem_state != MODEM_STATE_PRE_SIM) {
- if (modem->modem_state == MODEM_STATE_ONLINE)
- modem->get_online = TRUE;
-
- modem_change_state(modem, MODEM_STATE_PRE_SIM);
- }
break;
case OFONO_SIM_STATE_READY:
modem_change_state(modem, MODEM_STATE_OFFLINE);
@@ -1970,6 +1965,16 @@ void ofono_modem_reset(struct ofono_modem *modem)
modem_change_state(modem, MODEM_STATE_PRE_SIM);
}
+void __ofono_modem_sim_reset(struct ofono_modem *modem)
+{
+ DBG("%p", modem);
+
+ if (modem->modem_state == MODEM_STATE_ONLINE)
+ modem->get_online = TRUE;
+
+ modem_change_state(modem, MODEM_STATE_PRE_SIM);
+}
+
int ofono_modem_driver_register(const struct ofono_modem_driver *d)
{
DBG("driver: %p, name: %s", d, d->name);