diff options
author | 2021-07-01 20:37:45 +0530 | |
---|---|---|
committer | 2021-07-01 13:04:41 -0700 | |
commit | 5bb4eea0c5f5b9383a543293966bdf20e54988aa (patch) | |
tree | b9eba753b5b398fde94287874b55db6dbe0f0c9d /drivers/net/wwan/iosm/iosm_ipc_mux_codec.c | |
parent | net: wwan: iosm: remove reduandant check (diff) | |
download | linux-dev-5bb4eea0c5f5b9383a543293966bdf20e54988aa.tar.xz linux-dev-5bb4eea0c5f5b9383a543293966bdf20e54988aa.zip |
net: wwan: iosm: correct link-id handling
Link ID to be kept intact with MBIM session ID
Ex: ID 0 should be associated to MBIM session ID 0.
Reported-by: Loic Poulain <loic.poulain@linaro.org>
Signed-off-by: M Chetan Kumar <m.chetan.kumar@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wwan/iosm/iosm_ipc_mux_codec.c')
-rw-r--r-- | drivers/net/wwan/iosm/iosm_ipc_mux_codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wwan/iosm/iosm_ipc_mux_codec.c b/drivers/net/wwan/iosm/iosm_ipc_mux_codec.c index e634ffc6ec08..562de275797a 100644 --- a/drivers/net/wwan/iosm/iosm_ipc_mux_codec.c +++ b/drivers/net/wwan/iosm/iosm_ipc_mux_codec.c @@ -288,7 +288,7 @@ static int ipc_mux_net_receive(struct iosm_mux *ipc_mux, int if_id, /* Pass the packet to the netif layer. */ dest_skb->priority = service_class; - return ipc_wwan_receive(wwan, dest_skb, false, if_id + 1); + return ipc_wwan_receive(wwan, dest_skb, false, if_id); } /* Decode Flow Credit Table in the block */ |