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 30E9F1E86C; Mon, 1 Apr 2024 16:38:51 +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=1711989531; cv=none; b=mnrTU/F2AWccm2g+AulH0PfL7f4cdh1VKyKpN1HOf+nkcj2HOjrtcWhH9wV8bxV4vwoQBY2YBs2O48uX+Q257woyboC0F+am3YxTC4FZ9oL4l2ixRFy0dfeA/wJJwT6iSNTAQjyisqxZFMwbiX9BLQo1QUfaTWoPMXPRXZmWxGE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711989531; c=relaxed/simple; bh=V2CT7vyOe9lrTI1rs0t33UJSvH8AoMPSaIipld0k6do=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=sHIOg+aQOZtbSGAfEGJ+KamMynBx17vh037/SyCap8AHwbSIf0pcmjTWwAbl9hkJ5nOC4pBhY3cfEyvnzcS2bANlDJ5suGnKn3bNUt/NR5HgiLGdlwZ6aX9xMRFkZsV0eu/HM24o3ZdJVmYpln38RRglUDbwfoBjgu2nqFx3+EY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=13gTUxzG; 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="13gTUxzG" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 97118C433C7; Mon, 1 Apr 2024 16:38:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1711989531; bh=V2CT7vyOe9lrTI1rs0t33UJSvH8AoMPSaIipld0k6do=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=13gTUxzGzeAoZBjKb7tziOuj5ZMDLn11MuXc+ZG1TvEp51GrYOCt41/6Cresh0Kxj LPeKiskt401CUTb6L6y+nWVJc+fKFJZRDDFkvjLJ/ErPiPUgMUUI0SeGwILdCRI6pA 5RMnRX0zST1yDA3jfhRiKsa6Q5uw/IkzU1GmHezs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Christian=20H=C3=A4ggstr=C3=B6m?= , Johan Hovold , Sasha Levin Subject: [PATCH 6.6 076/396] USB: serial: cp210x: add ID for MGP Instruments PDS100 Date: Mon, 1 Apr 2024 17:42:05 +0200 Message-ID: <20240401152550.184946858@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240401152547.867452742@linuxfoundation.org> References: <20240401152547.867452742@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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Christian Häggström [ Upstream commit a0d9d868491a362d421521499d98308c8e3a0398 ] The radiation meter has the text MGP Instruments PDS-100G or PDS-100GN produced by Mirion Technologies. Tested by forcing the driver association with echo 10c4 863c > /sys/bus/usb-serial/drivers/cp210x/new_id and then setting the serial port in 115200 8N1 mode. The device announces ID_USB_VENDOR_ENC=Silicon\x20Labs and ID_USB_MODEL_ENC=PDS100 Signed-off-by: Christian Häggström Cc: stable@vger.kernel.org Signed-off-by: Johan Hovold Signed-off-by: Sasha Levin --- 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 d339d81f6e8cf..2169b6549a260 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c @@ -144,6 +144,7 @@ static const struct usb_device_id id_table[] = { { USB_DEVICE(0x10C4, 0x85EA) }, /* AC-Services IBUS-IF */ { USB_DEVICE(0x10C4, 0x85EB) }, /* AC-Services CIS-IBUS */ { USB_DEVICE(0x10C4, 0x85F8) }, /* Virtenio Preon32 */ + { USB_DEVICE(0x10C4, 0x863C) }, /* MGP Instruments PDS100 */ { USB_DEVICE(0x10C4, 0x8664) }, /* AC-Services CAN-IF */ { USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */ { USB_DEVICE(0x10C4, 0x87ED) }, /* IMST USB-Stick for Smart Meter */ -- 2.43.0