phonesim: Don't use VENDOR_PHONESIM for calypso

Also move the STK initialisation to post-sim because it is more logical
there (even if it makes no difference under phonesim).
This commit is contained in:
Andrzej Zaborowski 2010-08-05 19:30:52 +02:00 committed by Denis Kenzior
parent f01de438bd
commit 303394910f
1 changed files with 4 additions and 2 deletions

View File

@ -289,8 +289,6 @@ static void phonesim_pre_sim(struct ofono_modem *modem)
else
ofono_voicecall_create(modem, 0, "atmodem", data->chat);
ofono_stk_create(modem, OFONO_VENDOR_PHONESIM, "atmodem", data->chat);
if (sim)
ofono_sim_inserted_notify(sim, TRUE);
}
@ -304,6 +302,10 @@ static void phonesim_post_sim(struct ofono_modem *modem)
DBG("%p", modem);
if (!data->calypso)
ofono_stk_create(modem, OFONO_VENDOR_PHONESIM,
"atmodem", data->chat);
ofono_ussd_create(modem, 0, "atmodem", data->chat);
ofono_call_forwarding_create(modem, 0, "atmodem", data->chat);
ofono_call_settings_create(modem, 0, "atmodem", data->chat);