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 8837C2690EB; Tue, 8 Apr 2025 12:07:21 +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=1744114041; cv=none; b=jj3FKd5OyanCXTL/Q6nAPdKWt+GOSH9lkqY3jQBmb8L8YKFvB6OCdUVgACw69ki8kOeoewkR5wEZNIRe4IUke5CNVHvHMC1Mc9gv9Je8QtgJWLZ0e17es35ofDFr5PJ1ubXcbiDlVQUIKIDonq+wpJ1RsvOIw4Q8Cbz0LYd9aVM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744114041; c=relaxed/simple; bh=Kmxb2RMimlN8jiRTxK1ckedzpmGzBybFr71oRt0HyRI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=P57HtQNpoN1UfhWVDB3LQSNf1SGzuMkoZGBWAUdfG8Cpz7K1UOulHOh1svr+RPsV9HqSFc7ZAQcJeBHdD3lIbNyNCgVLUCp8BOJ+1uZsnZyhPdy2mNTTLW3EDFyRIZGD52bG5uJW6hrSMEJwOlf6F7xbtBILm9/lHVvE98qOpiQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ccV3OIqZ; 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="ccV3OIqZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AAA24C4CEE5; Tue, 8 Apr 2025 12:07:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1744114041; bh=Kmxb2RMimlN8jiRTxK1ckedzpmGzBybFr71oRt0HyRI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ccV3OIqZRSzLuHLleotVHw6ewP4j6r2vTaKnQXM0zIG6scPa484dy8TV8l+a0Bzld 3FNrbu/XeuEaP2xzFXxuUbccch4pkbOHnoZfwBcv/qGpfSpChkCWVXkX/EHtlKximG clykUFz+/gNoXAKFpp9NaKEJmDNUcWhDW8fPDivU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, stable , Cameron Williams Subject: [PATCH 5.4 074/154] tty: serial: 8250: Add some more device IDs Date: Tue, 8 Apr 2025 12:50:15 +0200 Message-ID: <20250408104817.679083694@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250408104815.295196624@linuxfoundation.org> References: <20250408104815.295196624@linuxfoundation.org> User-Agent: quilt/0.68 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.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Cameron Williams commit be6a23650908e2f827f2e7839a3fbae41ccb5b63 upstream. These card IDs got missed the first time around. Cc: stable Signed-off-by: Cameron Williams Link: https://lore.kernel.org/r/DB7PR02MB380295BCC879CCF91315AC38C4C12@DB7PR02MB3802.eurprd02.prod.outlook.com Signed-off-by: Greg Kroah-Hartman --- drivers/tty/serial/8250/8250_pci.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) --- a/drivers/tty/serial/8250/8250_pci.c +++ b/drivers/tty/serial/8250/8250_pci.c @@ -5132,6 +5132,14 @@ static const struct pci_device_id serial PCI_ANY_ID, PCI_ANY_ID, 0, 0, pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0BA2, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0BA3, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_2_115200 }, /* * Brainboxes UC-235/246 */ @@ -5312,6 +5320,14 @@ static const struct pci_device_id serial PCI_ANY_ID, PCI_ANY_ID, 0, 0, pbn_b2_4_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0C42, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_4_115200 }, + { PCI_VENDOR_ID_INTASHIELD, 0x0C43, + PCI_ANY_ID, PCI_ANY_ID, + 0, 0, + pbn_b2_4_115200 }, /* * Brainboxes UC-420 */