Skip to content

Commit d46f3bd

Browse files
committed
net: mhi: Drop the MHI auto_queue feature for IPCR DL channels
deepin inclusion category: bugfix commit e296c42 ("net: qrtr: Drop the MHI auto_queue feature for IPCR DL channels") upstream, so remove AUTOQUEUE for 980v2. 2026-03-13T01:50:28.9880491Z drivers/bus/mhi/host/pci_generic.c:807:9: error: implicit declaration of function ‘MHI_CHANNEL_CONFIG_DL_AUTOQUEUE’; did you mean ‘MHI_CHANNEL_CONFIG_DL_FP’? [-Werror=implicit-function-declaration] 2026-03-13T01:50:28.9883549Z 807 | MHI_CHANNEL_CONFIG_DL_AUTOQUEUE(19, "IP_CTRL", 8, 1), 2026-03-13T01:50:28.9884407Z | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2026-03-13T01:50:28.9885012Z | MHI_CHANNEL_CONFIG_DL_FP 2026-03-13T01:50:28.9886563Z drivers/bus/mhi/host/pci_generic.c:807:9: error: initialization of ‘char *’ from ‘int’ makes pointer from integer without a cast [-Werror=int-conversion] Signed-off-by: Wentao Guan <guanwentao@uniontech.com>
1 parent d25cc41 commit d46f3bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/bus/mhi/host/pci_generic.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -804,9 +804,9 @@ static const struct mhi_channel_config mhi_telit_fn980_hw_v2_channels[] = {
804804
MHI_CHANNEL_CONFIG_UL(14, "QMI", 32, 0),
805805
MHI_CHANNEL_CONFIG_DL(15, "QMI", 32, 0),
806806
MHI_CHANNEL_CONFIG_UL(18, "IP_CTRL", 8, 1),
807-
MHI_CHANNEL_CONFIG_DL_AUTOQUEUE(19, "IP_CTRL", 8, 1),
807+
MHI_CHANNEL_CONFIG_DL(19, "IP_CTRL", 8, 1),
808808
MHI_CHANNEL_CONFIG_UL(20, "IPCR", 16, 0),
809-
MHI_CHANNEL_CONFIG_DL_AUTOQUEUE(21, "IPCR", 16, 0),
809+
MHI_CHANNEL_CONFIG_DL(21, "IPCR", 16, 0),
810810
MHI_CHANNEL_CONFIG_UL(32, "DUN", 8, 1),
811811
MHI_CHANNEL_CONFIG_DL(33, "DUN", 8, 1),
812812
MHI_CHANNEL_CONFIG_UL(92, "DUN2", 8, 1),

0 commit comments

Comments
 (0)