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.0 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,URIBL_BLOCKED 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 E21A6C43381 for ; Fri, 29 Mar 2019 14:46:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A9EEB21850 for ; Fri, 29 Mar 2019 14:46:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1553870807; bh=gI2VCNQJckqtrbtpH+w/0bYDbWHRPGP3ijxKVLw1VVs=; h=Subject:To:From:Date:List-ID:From; b=EsiDAqr4ZX6U/Qm8FDFAbPApI2DHZyoxUeUdaJT9dCsSwo+KTAQWME1XgguwValoK KKUEUW7mMnoR4BjD6/6nEL7SvBN30HNGX2lZZ901t1XDfdM+R8iVlkzLswtDWE19/A b23gd2fQisecfrjIKW6JqcLyLd27hO2fmhIIDZ5k= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729184AbfC2Oqr (ORCPT ); Fri, 29 Mar 2019 10:46:47 -0400 Received: from mail.kernel.org ([198.145.29.99]:34364 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728848AbfC2Oqr (ORCPT ); Fri, 29 Mar 2019 10:46:47 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.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 308C42184C; Fri, 29 Mar 2019 14:46:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1553870806; bh=gI2VCNQJckqtrbtpH+w/0bYDbWHRPGP3ijxKVLw1VVs=; h=Subject:To:From:Date:From; b=1zCuPhaQSdJ3qHTrzm6alt4Lys820FQPsTsKicrQ4byuDR0y1VHHh1fqow4N7W4Im oPhKElhiw/FZqJKPuqL5lTMtOGxxgoN1uoxm4xht2pyy9P/c9TxW484xo/mQAdso08 Pi5rsGes7L3XG3CG56YtxsBeqqcu2psnLEJus/A0= Subject: patch "USB: serial: cp210x: add new device id" added to usb-linus To: gregkh@linuxfoundation.org, johan@kernel.org, stable@vger.kernel.org, t9cpu@web.de From: Date: Fri, 29 Mar 2019 15:46:30 +0100 Message-ID: <155387079070244@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: cp210x: add new device id 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-linus 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 hopefully also be merged in Linus's tree for the next -rc kernel release. If you have any questions about this process, please let me know. >From a595ecdd5f60b2d93863cebb07eec7f935839b54 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Wed, 27 Mar 2019 10:11:14 +0900 Subject: USB: serial: cp210x: add new device id Lorenz Messtechnik has a device that is controlled by the cp210x driver, so add the device id to the driver. The device id was provided by Silicon-Labs for the devices from this vendor. Reported-by: Uli Signed-off-by: Greg Kroah-Hartman Cc: stable Signed-off-by: Johan Hovold --- drivers/usb/serial/cp210x.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c index fffe23ab0189..979bef9bfb6b 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c @@ -80,6 +80,7 @@ static const struct usb_device_id id_table[] = { { USB_DEVICE(0x10C4, 0x804E) }, /* Software Bisque Paramount ME build-in converter */ { USB_DEVICE(0x10C4, 0x8053) }, /* Enfora EDG1228 */ { USB_DEVICE(0x10C4, 0x8054) }, /* Enfora GSM2228 */ + { USB_DEVICE(0x10C4, 0x8056) }, /* Lorenz Messtechnik devices */ { USB_DEVICE(0x10C4, 0x8066) }, /* Argussoft In-System Programmer */ { USB_DEVICE(0x10C4, 0x806F) }, /* IMS USB to RS422 Converter Cable */ { USB_DEVICE(0x10C4, 0x807A) }, /* Crumb128 board */ -- 2.21.0