From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8D3704778E; Mon, 1 Apr 2024 16:14:55 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711988095; cv=none; b=PlGieGbaW1CRjevOUWjgMg86yaKn6XE8uASYt/fE0Csl2gtSflK80qM/axlTV6Mhu5bWcipbWzj1zaivOoKLYfOosRyfgrOcOVb2yr4D1cvd5oBZ5jMWkf3V2aKoAFWxQ+ZVpRapZCmYS3LpwX20mDjGXBUNxWSjrXX43HVSqjQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711988095; c=relaxed/simple; bh=PGVrpRWHpTdUc/1flK7MSl9PQWnJAId6vgcThEH21ho=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=L7xDQNYSvXw5xaZH/lhx0u9+lFSLdr3zs1WB0+OnAf2zMz3jkaNufswwWvELEzDu/98hzWHugjVVtLThVk9WB9C0IZENFwjf7/oDrloTuxdNUAnLVqTzsUuz1jSPUogDxrck3eD4gaEHz+lggbrA0ue74mR3tYPYR1giqhxoPMw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=KsrP8z/S; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="KsrP8z/S" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B77A6C433C7; Mon, 1 Apr 2024 16:14:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1711988095; bh=PGVrpRWHpTdUc/1flK7MSl9PQWnJAId6vgcThEH21ho=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KsrP8z/SK4jbaxwsV/LuhRs42zB9ITghuMcrw6Eocarr5Z7+GV3ozcvL2YRadyZnO E4q5v2XkOylH8jCeCL7pd8ls3H/G8948ldCiwxwz2TDGbwTy4zmkg6QW+PswKdiJD7 bQna44F/Gpvuo+ysfrSKmqAxprrVz/YkdsUEs+oo= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Toru Katagiri , Johan Hovold , Sasha Levin Subject: [PATCH 6.7 083/432] USB: serial: cp210x: add pid/vid for TDK NC0110013M and MM0110113M Date: Mon, 1 Apr 2024 17:41:10 +0200 Message-ID: <20240401152555.596017315@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240401152553.125349965@linuxfoundation.org> References: <20240401152553.125349965@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.7-stable review patch. If anyone has any objections, please let me know. ------------------ From: Toru Katagiri [ Upstream commit b1a8da9ff1395c4879b4bd41e55733d944f3d613 ] TDK NC0110013M and MM0110113M have custom USB IDs for CP210x, so we need to add them to the driver. Signed-off-by: Toru Katagiri Cc: stable@vger.kernel.org Signed-off-by: Johan Hovold Signed-off-by: Sasha Levin --- drivers/usb/serial/cp210x.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c index 2169b6549a260..21fd26609252b 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c @@ -56,6 +56,8 @@ static const struct usb_device_id id_table[] = { { USB_DEVICE(0x0471, 0x066A) }, /* AKTAKOM ACE-1001 cable */ { USB_DEVICE(0x0489, 0xE000) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ { USB_DEVICE(0x0489, 0xE003) }, /* Pirelli Broadband S.p.A, DP-L10 SIP/GSM Mobile */ + { USB_DEVICE(0x04BF, 0x1301) }, /* TDK Corporation NC0110013M - Network Controller */ + { USB_DEVICE(0x04BF, 0x1303) }, /* TDK Corporation MM0110113M - i3 Micro Module */ { USB_DEVICE(0x0745, 0x1000) }, /* CipherLab USB CCD Barcode Scanner 1000 */ { USB_DEVICE(0x0846, 0x1100) }, /* NetGear Managed Switch M4100 series, M5300 series, M7100 series */ { USB_DEVICE(0x08e6, 0x5501) }, /* Gemalto Prox-PU/CU contactless smartcard reader */ -- 2.43.0