On Wed, Apr 06, 2016 at 03:20:03PM +0000, Schemmel Hans-Christoph wrote: > Added support for Gemalto's Cinterion PH8 and AHxx products > with 2 RmNet Interfaces and products with 1 RmNet + 1 USB Audio interface. > > The RmNet and USB Audio interfaces are blacklisted because they will be > handled by other drivers. > > In addition some minor renaming and formatting. > > Signed-off-by: Hans-Christoph Schemmel <hans-christoph.schemmel@xxxxxxxxxxx> > --- > drivers/usb/serial/option.c | 39 ++++++++++++++++++++++++++++++++------- > 1 file changed, 32 insertions(+), 7 deletions(-) > > diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c > index 348e198..b1e7820 100644 > --- a/drivers/usb/serial/option.c > +++ b/drivers/usb/serial/option.c > @@ -375,18 +375,22 @@ static void option_instat_callback(struct urb *urb); > #define HAIER_PRODUCT_CE81B 0x10f8 > #define HAIER_PRODUCT_CE100 0x2009 > > -/* Cinterion (formerly Siemens) products */ > -#define SIEMENS_VENDOR_ID 0x0681 > -#define CINTERION_VENDOR_ID 0x1e2d > +/* Gemalto's Cinterion products (formerly Siemens)*/ You forgot a space after the closing parentheses. Just leave the comment unchanged. > +#define SIEMENS_VENDOR_ID 0x0681 > +#define CINTERION_VENDOR_ID 0x1e2d > #define CINTERION_PRODUCT_HC25_MDM 0x0047 > -#define CINTERION_PRODUCT_HC25_MDMNET 0x0040 > +#define CINTERION_PRODUCT_HC25_MDMNET 0x0040 > #define CINTERION_PRODUCT_HC28_MDM 0x004C > -#define CINTERION_PRODUCT_HC28_MDMNET 0x004A /* same for HC28J */ > +#define CINTERION_PRODUCT_HC28_MDMNET 0x004A /* same for HC28J */ > #define CINTERION_PRODUCT_EU3_E 0x0051 > #define CINTERION_PRODUCT_EU3_P 0x0052 > #define CINTERION_PRODUCT_PH8 0x0053 > #define CINTERION_PRODUCT_AHXX 0x0055 > #define CINTERION_PRODUCT_PLXX 0x0060 > +#define CINTERION_PRODUCT_PH8_2RMNET 0x0082 > +#define CINTERION_PRODUCT_PH8_AUDIO 0x0083 > +#define CINTERION_PRODUCT_AHXX_2RMNET 0x0084 > +#define CINTERION_PRODUCT_AHXX_AUDIO 0x0085 Could you provide the usb-devices output for these devices? Thanks, Johan > > /* Olivetti products */ > #define OLIVETTI_VENDOR_ID 0x0b3c > @@ -600,6 +604,18 @@ static const struct option_blacklist_info net_intf6_blacklist = { > .reserved = BIT(6), > }; > > +static const struct option_blacklist_info cinterion_rmnet1_blacklist = { > + .reserved = BIT(4) | BIT(5), > +}; > + > +static const struct option_blacklist_info cinterion_rmnet2_blacklist = { > + .reserved = BIT(4) | BIT(5) | BIT(6) | BIT(7), > +}; > + > +static const struct option_blacklist_info cinterion_audio_blacklist = { > + .reserved = BIT(4) | BIT(5) | BIT(6) | BIT(7) | BIT(8), > +}; > + > static const struct option_blacklist_info zte_mf626_blacklist = { > .sendsetup = BIT(0) | BIT(1), > .reserved = BIT(4), > @@ -1708,8 +1724,17 @@ static const struct usb_device_id option_ids[] = { > { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_E) }, > { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_P) }, > { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PH8), > - .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, > - { USB_DEVICE_INTERFACE_CLASS(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AHXX, 0xff) }, > + .driver_info = (kernel_ulong_t)&cinterion_rmnet1_blacklist }, > + { USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AHXX), > + .driver_info = (kernel_ulong_t)&cinterion_rmnet1_blacklist }, Why are you modifying existing entries here? Thanks, Johan -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html