diff options
author | Baochen Qiang <quic_bqiang@quicinc.com> | 2023-03-17 14:25:33 +0800 |
---|---|---|
committer | Kalle Valo <quic_kvalo@quicinc.com> | 2023-03-22 12:06:51 +0200 |
commit | 72d17c3e86d0f7fad8f3ae77d87d00b7b6788a8e (patch) | |
tree | 00f547b988a3b0b07df441f7eb03620e2aff826c | |
parent | 4c26033d75e414cf0c500055ec58511f93684d87 (diff) | |
download | linux-stable-72d17c3e86d0f7fad8f3ae77d87d00b7b6788a8e.tar.gz linux-stable-72d17c3e86d0f7fad8f3ae77d87d00b7b6788a8e.tar.bz2 linux-stable-72d17c3e86d0f7fad8f3ae77d87d00b7b6788a8e.zip |
wifi: ath12k: Enable IMPS for WCN7850
To reduce power consumption, change idle_ps to true to enable
Idle Mode Power Save (IMPS) for WCN7850.
Tested-on: WCN7850 hw2.0 PCI WLAN.HMT.1.0-03427-QCAHMTSWPL_V1.0_V2.0_SILICONZ-1.15378.4
Signed-off-by: Baochen Qiang <quic_bqiang@quicinc.com>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20230317062533.18240-1-quic_bqiang@quicinc.com
-rw-r--r-- | drivers/net/wireless/ath/ath12k/hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath12k/hw.c b/drivers/net/wireless/ath/ath12k/hw.c index 91d576fd4b0f..1ffac7e3deaa 100644 --- a/drivers/net/wireless/ath/ath12k/hw.c +++ b/drivers/net/wireless/ath/ath12k/hw.c @@ -944,7 +944,7 @@ static const struct ath12k_hw_params ath12k_hw_params[] = { .interface_modes = BIT(NL80211_IFTYPE_STATION), .supports_monitor = false, - .idle_ps = false, + .idle_ps = true, .download_calib = false, .supports_suspend = false, .tcl_ring_retry = false, |