Skip to content

Commit ae5a342

Browse files
SlarkXiaoMani-Sadhasivam
authored andcommitted
bus: mhi: host: pci_generic: Fix the modem name of Foxconn T99W640
T99W640 was mistakenly mentioned as T99W515. T99W515 is a LGA device, not a M.2 modem device. So correct it's name to avoid name mismatch issue. Fixes: bf30a75 ("bus: mhi: host: Add support for Foxconn SDX72 modems") Signed-off-by: Slark Xiao <[email protected]> [mani: commit message fixup] Signed-off-by: Manivannan Sadhasivam <[email protected]> Link: https://patch.msgid.link/[email protected]
1 parent 701aa9a commit ae5a342

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/bus/mhi/host/pci_generic.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,8 @@ static const struct mhi_pci_dev_info mhi_foxconn_dw5932e_info = {
593593
.sideband_wake = false,
594594
};
595595

596-
static const struct mhi_pci_dev_info mhi_foxconn_t99w515_info = {
597-
.name = "foxconn-t99w515",
596+
static const struct mhi_pci_dev_info mhi_foxconn_t99w640_info = {
597+
.name = "foxconn-t99w640",
598598
.edl = "qcom/sdx72m/foxconn/edl.mbn",
599599
.edl_trigger = true,
600600
.config = &modem_foxconn_sdx72_config,
@@ -920,9 +920,9 @@ static const struct pci_device_id mhi_pci_id_table[] = {
920920
/* DW5932e (sdx62), Non-eSIM */
921921
{ PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0f9),
922922
.driver_data = (kernel_ulong_t) &mhi_foxconn_dw5932e_info },
923-
/* T99W515 (sdx72) */
923+
/* T99W640 (sdx72) */
924924
{ PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe118),
925-
.driver_data = (kernel_ulong_t) &mhi_foxconn_t99w515_info },
925+
.driver_data = (kernel_ulong_t) &mhi_foxconn_t99w640_info },
926926
/* DW5934e(sdx72), With eSIM */
927927
{ PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe11d),
928928
.driver_data = (kernel_ulong_t) &mhi_foxconn_dw5934e_info },

0 commit comments

Comments
 (0)