From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C9ECEC43381 for ; Fri, 22 Feb 2019 07:06:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8F9D82086C for ; Fri, 22 Feb 2019 07:06:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550819215; bh=FhG7ZroPCI76JhCirhCTZ4i3ImNLbOu1sfBYMk2mm08=; h=Subject:To:From:Date:List-ID:From; b=YgJLerIYiAoGhTQKVOYUnBJGrzos6gXLVeaFucLmkA45DokYD2cpi+rEdDyB/2XLO U27Ficn915MQ4GXjWYKKnlA42N2FzPV7ZxXkQBqYSxZ+2vWdObhGTska9UQ8lMlI8R 20UDo6/PnCHFzcjVxR4g7Tq/xDZGJo0kGA2YP9HE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725864AbfBVHGz (ORCPT ); Fri, 22 Feb 2019 02:06:55 -0500 Received: from mail.kernel.org ([198.145.29.99]:53260 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725821AbfBVHGz (ORCPT ); Fri, 22 Feb 2019 02:06:55 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C1F9D20879; Fri, 22 Feb 2019 07:06:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1550819214; bh=FhG7ZroPCI76JhCirhCTZ4i3ImNLbOu1sfBYMk2mm08=; h=Subject:To:From:Date:From; b=uzdgrl+eVje4UTPkZ9CWiWOcDOdLVrO6iSlDfAbH+Zd0XapG9N21IZdHRpeWpmvvP Y5rIPbm2YcC2UI5/Pam3yRe44UUHx+T9ZSNrJr0RxQDJBbW+bEiP7+IXDF7hORcvZm v6gHX93L7JfaiwcPhJIF4xzxcFT/RD5s5e8OI/EU= Subject: patch "USB: serial: option: add Telit ME910 ECM composition" added to usb-next To: dnlplm@gmail.com, johan@kernel.org, stable@vger.kernel.org From: Date: Fri, 22 Feb 2019 08:06:00 +0100 Message-ID: <1550819160126155@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org This is a note to let you know that I've just added the patch titled USB: serial: option: add Telit ME910 ECM composition to my usb git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git in the usb-next branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will also be merged in the next major kernel release during the merge window. If you have any questions about this process, please let me know. >From 6431866b6707d27151be381252d6eef13025cfce Mon Sep 17 00:00:00 2001 From: Daniele Palmas Date: Wed, 20 Feb 2019 11:43:17 +0100 Subject: USB: serial: option: add Telit ME910 ECM composition This patch adds Telit ME910 family ECM composition 0x1102. Signed-off-by: Daniele Palmas Cc: stable Signed-off-by: Johan Hovold --- drivers/usb/serial/option.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index aef15497ff31..11b21d9410f3 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -1148,6 +1148,8 @@ static const struct usb_device_id option_ids[] = { .driver_info = NCTRL(0) | RSVD(1) | RSVD(3) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_ME910_DUAL_MODEM), .driver_info = NCTRL(0) | RSVD(3) }, + { USB_DEVICE_INTERFACE_CLASS(TELIT_VENDOR_ID, 0x1102, 0xff), /* Telit ME910 (ECM) */ + .driver_info = NCTRL(0) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE910), .driver_info = NCTRL(0) | RSVD(1) | RSVD(2) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_LE910_USBCFG4), -- 2.20.1