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 EEA8C1AA793; Mon, 14 Oct 2024 15:06:46 +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=1728918407; cv=none; b=Pr4Wo/C6gj7kVHCSxxOXmNXcGVL5XEZTnHTb2NqpDOhWP+usSiI9wWC9KSbPonScyFXauwGm8J/8MAW5LQDI9obcJ3ftlqhIMfJM94IzrNQGsq/G/TjmgxfRO38ucwhhMgLpE0Qr9b5TxxVFtCVtW2prpTE4uaGt6z/88Ehm108= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728918407; c=relaxed/simple; bh=j3VvieVqnT3/IeRnolMkjCPAK/bszYLQFLYtHUOq8f8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Yg/U6+bDPdKzlLyDqajAlWGtuUcSkm1ky+b6aHY0gLb9GRAU+un2bEBYiwvGDDOIX6WcehLsC9FHz9UG0L4BZdx/R6NATyebhmqbRdkOYktuqYcOFhM8zDxN2QDU2pQsWs9aAEe3PY/WPh+IshhqdJgjYGFSKp6RRsltnalfeZE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=SBikrQN5; 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="SBikrQN5" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 357B4C4CEC7; Mon, 14 Oct 2024 15:06:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1728918406; bh=j3VvieVqnT3/IeRnolMkjCPAK/bszYLQFLYtHUOq8f8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=SBikrQN5f29sVTFnFijZKpQChB8/ZV3YAq7HfhJXDyWi5oXa0Xmz1XuIZ0Yw3agqU EgbosV/b84SJy/pksxvwK6VpsEp5GD9UMUPNRPqUOZVelb6fNykYGl6UjfTlKhDsAZ VkWVl3jkutiw50n2Ur9+ssPnEJqJJOsGSaovDAkk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Fabio Porcedda , Manivannan Sadhasivam Subject: [PATCH 6.1 313/798] bus: mhi: host: pci_generic: Fix the name for the Telit FE990A Date: Mon, 14 Oct 2024 16:14:27 +0200 Message-ID: <20241014141230.247097271@linuxfoundation.org> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241014141217.941104064@linuxfoundation.org> References: <20241014141217.941104064@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Fabio Porcedda commit bfc5ca0fd1ea7aceae0b682fa4bd8079c52f96c8 upstream. Add a mhi_pci_dev_info struct specific for the Telit FE990A modem in order to use the correct product name. Cc: stable@vger.kernel.org # 6.1+ Fixes: 0724869ede9c ("bus: mhi: host: pci_generic: add support for Telit FE990 modem") Signed-off-by: Fabio Porcedda Reviewed-by: Manivannan Sadhasivam Link: https://lore.kernel.org/r/20240820080439.837666-1-fabio.porcedda@gmail.com Signed-off-by: Manivannan Sadhasivam Signed-off-by: Greg Kroah-Hartman --- drivers/bus/mhi/host/pci_generic.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) --- a/drivers/bus/mhi/host/pci_generic.c +++ b/drivers/bus/mhi/host/pci_generic.c @@ -538,6 +538,15 @@ static const struct mhi_pci_dev_info mhi .mru_default = 32768, }; +static const struct mhi_pci_dev_info mhi_telit_fe990a_info = { + .name = "telit-fe990a", + .config = &modem_telit_fn990_config, + .bar_num = MHI_PCI_DEFAULT_BAR_NUM, + .dma_data_width = 32, + .sideband_wake = false, + .mru_default = 32768, +}; + /* Keep the list sorted based on the PID. New VID should be added as the last entry */ static const struct pci_device_id mhi_pci_id_table[] = { { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0304), @@ -553,9 +562,9 @@ static const struct pci_device_id mhi_pc /* Telit FN990 */ { PCI_DEVICE_SUB(PCI_VENDOR_ID_QCOM, 0x0308, 0x1c5d, 0x2010), .driver_data = (kernel_ulong_t) &mhi_telit_fn990_info }, - /* Telit FE990 */ + /* Telit FE990A */ { PCI_DEVICE_SUB(PCI_VENDOR_ID_QCOM, 0x0308, 0x1c5d, 0x2015), - .driver_data = (kernel_ulong_t) &mhi_telit_fn990_info }, + .driver_data = (kernel_ulong_t) &mhi_telit_fe990a_info }, { PCI_DEVICE(PCI_VENDOR_ID_QCOM, 0x0308), .driver_data = (kernel_ulong_t) &mhi_qcom_sdx65_info }, { PCI_DEVICE(0x1eac, 0x1001), /* EM120R-GL (sdx24) */