Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

net: wwan: mhi: Add network support for Foxconn T99W760

T99W760 is designed based on Qualcomm SDX35 chip. It use similar
architecture with SDX72/SDX75 chip. So we need to assign initial
link id for this device to make sure network available.

Signed-off-by: Slark Xiao <slark_xiao@163.com>
Link: https://patch.msgid.link/20260105022646.10630-1-slark_xiao@163.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Slark Xiao and committed by
Jakub Kicinski
915a5f60 c4df070a

+2 -1
+2 -1
drivers/net/wwan/mhi_wwan_mbim.c
··· 99 99 static int mhi_mbim_get_link_mux_id(struct mhi_controller *cntrl) 100 100 { 101 101 if (strcmp(cntrl->name, "foxconn-dw5934e") == 0 || 102 - strcmp(cntrl->name, "foxconn-t99w640") == 0) 102 + strcmp(cntrl->name, "foxconn-t99w640") == 0 || 103 + strcmp(cntrl->name, "foxconn-t99w760") == 0) 103 104 return WDS_BIND_MUX_DATA_PORT_MUX_ID; 104 105 105 106 return 0;