ifx: Use M-RAW_IP support only with internal multiplexer

The GPRS context can only be fully supported with the internal multiplexer
right now. So use M-RAW_IP support in that case. If using a kernel based
multiplexer, then no GPRS context is provided.
This commit is contained in:
Marcel Holtmann 2010-10-26 17:00:52 +02:00
parent 8c0163bfc0
commit 74c23d3302
1 changed files with 9 additions and 14 deletions

View File

@ -707,7 +707,7 @@ static void ifx_post_online(struct ofono_modem *modem)
struct ifx_data *data = ofono_modem_get_data(modem);
struct ofono_message_waiting *mw;
struct ofono_gprs *gprs;
struct ofono_gprs_context *gc1, *gc2;
struct ofono_gprs_context *gc;
DBG("%p", modem);
@ -736,21 +736,16 @@ static void ifx_post_online(struct ofono_modem *modem)
return;
if (data->mux_ldisc < 0) {
gc1 = ofono_gprs_context_create(modem, 0,
"atmodem", data->dlcs[GPRS1_DLC]);
gc2 = ofono_gprs_context_create(modem, 0,
"atmodem", data->dlcs[GPRS2_DLC]);
} else {
gc1 = ofono_gprs_context_create(modem, 0,
gc = ofono_gprs_context_create(modem, 0,
"ifxmodem", data->dlcs[GPRS1_DLC]);
gc2 = ofono_gprs_context_create(modem, 0,
"ifxmodem", data->dlcs[GPRS2_DLC]);
}
if (gc)
ofono_gprs_add_context(gprs, gc);
if (gc1)
ofono_gprs_add_context(gprs, gc1);
if (gc2)
ofono_gprs_add_context(gprs, gc2);
gc = ofono_gprs_context_create(modem, 0,
"ifxmodem", data->dlcs[GPRS2_DLC]);
if (gc)
ofono_gprs_add_context(gprs, gc);
}
}
static struct ofono_modem_driver ifx_driver = {