udev: Detect old Option cards without high-speed interface

This commit is contained in:
Marcel Holtmann 2012-02-16 18:07:07 +01:00
parent 7693007d2e
commit caad8378d9
1 changed files with 35 additions and 0 deletions

View File

@ -234,6 +234,39 @@ static gboolean setup_sierra(struct modem_info *modem)
return TRUE;
}
static gboolean setup_option(struct modem_info *modem)
{
const char *aux = NULL, *mdm = NULL, *diag = NULL;
GSList *list;
DBG("%s", modem->syspath);
for (list = modem->devices; list; list = list->next) {
struct device_info *info = list->data;
DBG("%s %s %s %s", info->devnode, info->interface,
info->number, info->label);
if (g_strcmp0(info->interface, "255/255/255") == 0) {
if (g_strcmp0(info->number, "00") == 0)
mdm = info->devnode;
else if (g_strcmp0(info->number, "01") == 0)
diag = info->devnode;
else if (g_strcmp0(info->number, "02") == 0)
aux = info->devnode;
}
}
DBG("aux=%s modem=%s diag=%s", aux, mdm, diag);
ofono_modem_set_string(modem->modem, "Aux", aux);
ofono_modem_set_string(modem->modem, "Modem", mdm);
ofono_modem_set_string(modem->modem, "Diag", diag);
return TRUE;
}
static gboolean setup_huawei(struct modem_info *modem)
{
const char *mdm = NULL, *pcui = NULL, *diag = NULL;
@ -658,6 +691,7 @@ static struct {
{ "hso", setup_hso, "hsotype" },
{ "gobi", setup_gobi, },
{ "sierra", setup_sierra },
{ "option", setup_option },
{ "huawei", setup_huawei },
{ "speedupcdma",setup_speedup },
{ "speedup", setup_speedup },
@ -851,6 +885,7 @@ static struct {
{ "hso", "hso" },
{ "gobi", "qcserial" },
{ "sierra", "sierra" },
{ "option", "option", "0af0" },
{ "huawei", "option", "201e" },
{ "huawei", "cdc_ether", "12d1" },
{ "huawei", "option", "12d1" },