mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-18 01:41:24 +00:00
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
From 326efed7953efa18f493f8cb4bb6b885aa37d5f5 Mon Sep 17 00:00:00 2001
|
|
From: Anilkumar Kolli <akolli@codeaurora.org>
|
|
Date: Tue, 24 Mar 2020 20:22:48 +0530
|
|
Subject: [PATCH 6/9] ath11k: Fix single phy hw mode
|
|
|
|
driver not able to bootup in the single radio configured board.
|
|
single phy hw mode is converted to invalid hw mode and sent to FW
|
|
through wmi init cmd. In that case driver is not receiving wmi
|
|
ready event which leads to driver bootup fail. single phy hw mode
|
|
is a valid for single radio configured board. so removed the
|
|
conversion logic.
|
|
|
|
Signed-off-by: Karthikeyan Periyasamy <periyasa@codeaurora.org>
|
|
Signed-off-by: Anilkumar Kolli <akolli@codeaurora.org>
|
|
---
|
|
drivers/net/wireless/ath/ath11k/wmi.c | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/wmi.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/wmi.c
|
|
@@ -3825,9 +3825,6 @@ int ath11k_wmi_cmd_init(struct ath11k_ba
|
|
init_param.hw_mode_id = wmi_sc->preferred_hw_mode;
|
|
init_param.mem_chunks = wmi_sc->mem_chunks;
|
|
|
|
- if (wmi_sc->preferred_hw_mode == WMI_HOST_HW_MODE_SINGLE)
|
|
- init_param.hw_mode_id = WMI_HOST_HW_MODE_MAX;
|
|
-
|
|
if (ab->hw_params.needs_band_to_mac) {
|
|
init_param.num_band_to_mac = ab->num_radios;
|
|
ath11k_fill_band_to_mac_param(ab, init_param.band_to_mac);
|