浏览代码

qcacmn: Correct the bank register config for QCN9224

For QCN9224 update dscp_to_tid_table_num correctly
in Bank register

Change-Id: I222fe103fbc676c8985b542a66c6aa246d73b4eb
Chaithanya Garrepalli 3 年之前
父节点
当前提交
c9c1407d9a
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      hal/wifi3.0/be/hal_be_tx.h

+ 2 - 1
hal/wifi3.0/be/hal_be_tx.h

@@ -1,5 +1,6 @@
 /*
  * Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2021 Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -521,7 +522,7 @@ hal_tx_populate_bank_register(hal_soc_handle_t hal_soc_hdl,
 			HWIO_TCL_R0_SW_CONFIG_BANK_n_VDEV_ID_CHECK_EN_SHFT);
 	reg_val |= (config->pmac_id <<
 			HWIO_TCL_R0_SW_CONFIG_BANK_n_PMAC_ID_SHFT);
-	reg_val |= (config->mcast_pkt_ctrl <<
+	reg_val |= (config->dscp_tid_map_id <<
 			HWIO_TCL_R0_SW_CONFIG_BANK_n_DSCP_TID_TABLE_NUM_SHFT);
 
 	HAL_REG_WRITE(hal_soc, reg_addr, reg_val);