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 6008A13D24D; Thu, 11 Apr 2024 10:32:45 +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=1712831565; cv=none; b=FLKuJo9SStIX28wEegsfFnKLQKlxbuXZpZF5IwxAtiYpyASvk8F8XZ3lPhTFQCbx5O08+gTOQ4k17/I6Hs9yfzT/gCICrffoNIqjd9eCAwiJ50j2xHlGL0RIFAeJNT+sYj+FYyUfLj78AOembv3l7NN1LJPDwfUeWkbp/H6ldOU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712831565; c=relaxed/simple; bh=sEvloR34wGKP4TkskJ+/BazOcZ6pS4JWJqL6kCQKe00=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=QXw/MZjuRsIe7iIlmxYR4fCJmQI+Z0EyGv/0u3I4KTRMi0/ytf96TXgs3yNgxJrNALu3Bh/lOljXQjj3mrcmrFjv7X7PMowURGhcCr+nUyYNrfzpPw5ntZQJGau+kXRsXc5qa0MO+qYkaGuZxG5epDdfJbwfLNHnEbAX4YvrtDI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=GVNiSRzg; 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="GVNiSRzg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D9D96C433C7; Thu, 11 Apr 2024 10:32:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1712831565; bh=sEvloR34wGKP4TkskJ+/BazOcZ6pS4JWJqL6kCQKe00=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GVNiSRzgGy6HMGqqu1zBXJ2EkOOltieoA8pusVQcAnyRsWGtZ3hlFOeffweUyrmoy qJN3jrK1JUBnKvJm0jmO1QMBtMQXbM0PJOCWnch//c4lBnXX1so2kjpo7fuQvs7g3N cTni+XS5yY9H58KxeOx9jhTej41F1axRMatR421A= 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 5.10 050/294] USB: serial: cp210x: add pid/vid for TDK NC0110013M and MM0110113M Date: Thu, 11 Apr 2024 11:53:33 +0200 Message-ID: <20240411095437.148014974@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240411095435.633465671@linuxfoundation.org> References: <20240411095435.633465671@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 5.10-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 12d0be4d15101..294f7f01656aa 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c @@ -60,6 +60,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