Explorar el Código

qcacld-3.0: Change PMO_ACTION_BLKACK to PMO_MAC_ACTION_BLKACK

There is a compilation error due to use of PMO_ACTION_BLKACK, which
is not defined. Change PMO_ACTION_BLKACK to PMO_MAC_ACTION_BLKACK to
resolve this issue.

Change-Id: I011c4c323bfa7d104c6a6879aba93085a35fed3d
CRs-Fixed: 2923577
Alan Chen hace 4 años
padre
commit
753f93e6e0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      components/pmo/core/src/wlan_pmo_static_config.c

+ 1 - 1
components/pmo/core/src/wlan_pmo_static_config.c

@@ -364,7 +364,7 @@ static void set_action_id_drop_pattern_for_block_ack(
 					uint32_t *action_category_map,
 					uint32_t *action_id_per_category)
 {
-	action_category_map[0] |= 1 << PMO_ACTION_BLKACK;
+	action_category_map[0] |= 1 << PMO_MAC_ACTION_BLKACK;
 	action_id_per_category[0] = 1 << ADDBA_REQ;
 }
 #else