From ddfe8acf11f351a5887ced8fedf736ee4b108c51 Mon Sep 17 00:00:00 2001 From: Andrzej Zaborowski Date: Fri, 9 Apr 2010 08:48:50 +0200 Subject: Drivers can notify core of SIM insertion / removal Add ofono_sim_inserted_notify function to notify the core of SIM insertion / removal. Make every plugin generate a sim inserted event on start. For devices with removable card, the event should be emitted after the plugin detects such event. For devices that need to wait for SIM card initialization, they can emit this event later. --- plugins/hso.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'plugins/hso.c') diff --git a/plugins/hso.c b/plugins/hso.c index e682064b..27b69dce 100644 --- a/plugins/hso.c +++ b/plugins/hso.c @@ -198,11 +198,15 @@ static int hso_disable(struct ofono_modem *modem) static void hso_pre_sim(struct ofono_modem *modem) { struct hso_data *data = ofono_modem_get_data(modem); + struct ofono_sim *sim; DBG("%p", modem); ofono_devinfo_create(modem, 0, "atmodem", data->control); - ofono_sim_create(modem, 0, "atmodem", data->control); + sim = ofono_sim_create(modem, 0, "atmodem", data->control); + + if (sim) + ofono_sim_inserted_notify(sim, TRUE); } static void hso_post_sim(struct ofono_modem *modem) -- cgit v1.2.3