Add two VID to indicate usbif 0 is modem port to support
--- nm-modem-probe.c 2009-04-08 18:46:21.000000000
+0800 +++ patched/nm-modem-probe.c 2009-10-13
19:35:18.000000000 +0800 @@ -32,6 +32,8 @@ #define HUAWEI_VENDOR_ID 0x12D1 #define SIERRA_VENDOR_ID 0x1199 +#define BANDRICH_VENDOR_ID 0x +#define PIRELLI_VENDOR_ID 0x1266 #define
MODEM_CAP_GSM 0x0001 /* GSM */ #define
MODEM_CAP_IS707_A 0x0002 /* CDMA Circuit Switched Data
*/ @@ -549,6 +551,20 @@ goto
exit; } + if (vid ==
BANDRICH_VENDOR_ID && usbif != 0) { + verbose
("(%s) ignoring BANDRICH USB interface #1", device); + if
(export) + printf
("ID_NM_MODEM_PROBED=1\n"); + goto
exit; + } + + if (vid == PIRELLI_VENDOR_ID
&& usbif != 0) { + verbose
("(%s) ignoring PIRELLI USB interface #1", device); + if
(export) + printf
("ID_NM_MODEM_PROBED=1\n"); + goto
exit; + } + verbose
("probing %s", device); /* If a delay
was specified, retry opening the serial port for that |