aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM Chetan Kumar <[email protected]>2021-08-04 21:39:51 +0530
committerDavid S. Miller <[email protected]>2021-08-05 11:28:55 +0100
commitc98f5220e9703db2d73b4e89c07879dc61eeab14 (patch)
tree49623698d9cbf99167b042d5cae850df027e944a
parentb46c5795d641b759eb0f001ab21852fe5df5ef92 (diff)
net: wwan: iosm: correct data protocol mask bit
Correct ul/dl data protocol mask bit to know which protocol capability does device implement. Signed-off-by: M Chetan Kumar <[email protected]> Reviewed-by: Loic Poulain <[email protected]> Signed-off-by: David S. Miller <[email protected]>
-rw-r--r--drivers/net/wwan/iosm/iosm_ipc_mmio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wwan/iosm/iosm_ipc_mmio.h b/drivers/net/wwan/iosm/iosm_ipc_mmio.h
index 45e6923da78f..f861994a6d90 100644
--- a/drivers/net/wwan/iosm/iosm_ipc_mmio.h
+++ b/drivers/net/wwan/iosm/iosm_ipc_mmio.h
@@ -10,10 +10,10 @@
#define IOSM_CP_VERSION 0x0100UL
/* DL dir Aggregation support mask */
-#define DL_AGGR BIT(23)
+#define DL_AGGR BIT(9)
/* UL dir Aggregation support mask */
-#define UL_AGGR BIT(22)
+#define UL_AGGR BIT(8)
/* UL flow credit support mask */
#define UL_FLOW_CREDIT BIT(21)