summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/modem.c17
-rw-r--r--src/ofono.h2
-rw-r--r--src/sim.c9
3 files changed, 14 insertions, 14 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);
diff --git a/src/ofono.h b/src/ofono.h
index 30143f39..14dcd18d 100644
--- a/src/ofono.h
+++ b/src/ofono.h
@@ -207,6 +207,8 @@ unsigned int __ofono_modem_add_powered_watch(struct ofono_modem *modem,
void __ofono_modem_remove_powered_watch(struct ofono_modem *modem,
unsigned int id);
+void __ofono_modem_sim_reset(struct ofono_modem *modem);
+
#include <ofono/call-barring.h>
gboolean __ofono_call_barring_is_busy(struct ofono_call_barring *cb);
diff --git a/src/sim.c b/src/sim.c
index 7c2e151a..88d2b6f7 100644
--- a/src/sim.c
+++ b/src/sim.c
@@ -2481,7 +2481,6 @@ void __ofono_sim_refresh(struct ofono_sim *sim, GSList *file_list,
ofono_bool_t full_file_change, ofono_bool_t naa_init)
{
GSList *l;
- ofono_sim_state_event_cb_t notify;
gboolean reinit_naa = naa_init || full_file_change;
/*
@@ -2540,16 +2539,10 @@ void __ofono_sim_refresh(struct ofono_sim *sim, GSList *file_list,
if (reinit_naa) {
/* Force the sim state out of READY */
-
sim_free_main_state(sim);
sim->state = OFONO_SIM_STATE_INSERTED;
- for (l = sim->state_watches->items; l; l = l->next) {
- struct ofono_watchlist_item *item = l->data;
- notify = item->notify;
-
- notify(sim->state, item->notify_data);
- }
+ __ofono_modem_sim_reset(__ofono_atom_get_modem(sim->atom));
}
/*