diff options
-rw-r--r-- | drivers/atmodem/sim.c | 9 | ||||
-rw-r--r-- | plugins/hso.c | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/drivers/atmodem/sim.c b/drivers/atmodem/sim.c index 32c40a5c..766c60b1 100644 --- a/drivers/atmodem/sim.c +++ b/drivers/atmodem/sim.c @@ -110,6 +110,15 @@ static void at_sim_read_info(struct ofono_sim *sim, int fileid, struct cb_data *cbd = cb_data_new(cb, data); char buf[64]; + if (sd->vendor == OFONO_VENDOR_OPTION_HSO) { + unsigned char access[3] = { 0x00, 0x00, 0x00 }; + + if (fileid == SIM_EFAD_FILEID) { + CALLBACK_WITH_SUCCESS(cb, 4, 0, 0, access, data); + return; + } + } + if (!cbd) goto error; diff --git a/plugins/hso.c b/plugins/hso.c index 24a76b53..9e3b35af 100644 --- a/plugins/hso.c +++ b/plugins/hso.c @@ -221,7 +221,8 @@ static void hso_pre_sim(struct ofono_modem *modem) DBG("%p", modem); ofono_devinfo_create(modem, 0, "atmodem", data->control); - sim = ofono_sim_create(modem, 0, "atmodem", data->control); + sim = ofono_sim_create(modem, OFONO_VENDOR_OPTION_HSO, + "atmodem", data->control); if (sim) ofono_sim_inserted_notify(sim, TRUE); |