Message ID | 20200928101420.18745-1-manivannan.sadhasivam@linaro.org |
---|---|
State | New |
Headers | show |
Series | ath11k: remove auto_start from channel config struct | expand |
Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> writes: > Recent change in MHI bus removed the option to auto start the channels > during MHI driver probe. The channel will only be started when the MHI > client driver like QRTR gets probed. So, remove the option from ath11k > channel config struct. > > Fixes: 1399fb87ea3e ("ath11k: register MHI controller device for QCA6390") > Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> > Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> In the future please cc linux-wireless so that patchwork sees the patch. I'll resend this as v2 and add the cc. -- https://patchwork.kernel.org/project/linux-wireless/list/ https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
diff --git a/drivers/net/wireless/ath/ath11k/mhi.c b/drivers/net/wireless/ath/ath11k/mhi.c index aded9a719d51..47a1ce1bee4f 100644 --- a/drivers/net/wireless/ath/ath11k/mhi.c +++ b/drivers/net/wireless/ath/ath11k/mhi.c @@ -24,7 +24,6 @@ static struct mhi_channel_config ath11k_mhi_channels[] = { .offload_channel = false, .doorbell_mode_switch = false, .auto_queue = false, - .auto_start = false, }, { .num = 1, @@ -39,7 +38,6 @@ static struct mhi_channel_config ath11k_mhi_channels[] = { .offload_channel = false, .doorbell_mode_switch = false, .auto_queue = false, - .auto_start = false, }, { .num = 20, @@ -54,7 +52,6 @@ static struct mhi_channel_config ath11k_mhi_channels[] = { .offload_channel = false, .doorbell_mode_switch = false, .auto_queue = false, - .auto_start = true, }, { .num = 21, @@ -69,7 +66,6 @@ static struct mhi_channel_config ath11k_mhi_channels[] = { .offload_channel = false, .doorbell_mode_switch = false, .auto_queue = true, - .auto_start = true, }, };
Recent change in MHI bus removed the option to auto start the channels during MHI driver probe. The channel will only be started when the MHI client driver like QRTR gets probed. So, remove the option from ath11k channel config struct. Fixes: 1399fb87ea3e ("ath11k: register MHI controller device for QCA6390") Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> --- drivers/net/wireless/ath/ath11k/mhi.c | 4 ---- 1 file changed, 4 deletions(-)