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/phonesim.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'plugins/phonesim.c') diff --git a/plugins/phonesim.c b/plugins/phonesim.c index ca12cf23..4c3b3ce8 100644 --- a/plugins/phonesim.c +++ b/plugins/phonesim.c @@ -277,16 +277,20 @@ static int phonesim_disable(struct ofono_modem *modem) static void phonesim_pre_sim(struct ofono_modem *modem) { struct phonesim_data *data = ofono_modem_get_data(modem); + struct ofono_sim *sim; DBG("%p", modem); ofono_devinfo_create(modem, 0, "atmodem", data->chat); - ofono_sim_create(modem, 0, "atmodem", data->chat); + sim = ofono_sim_create(modem, 0, "atmodem", data->chat); if (data->calypso) ofono_voicecall_create(modem, 0, "calypsomodem", data->chat); else ofono_voicecall_create(modem, 0, "atmodem", data->chat); + + if (sim) + ofono_sim_inserted_notify(sim, TRUE); } static void phonesim_post_sim(struct ofono_modem *modem) -- cgit v1.2.3