Patch "ath11k: Init hw_params before setting up AHB resources" has been added to the 5.19-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    ath11k: Init hw_params before setting up AHB resources

to the 5.19-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     ath11k-init-hw_params-before-setting-up-ahb-resource.patch
and it can be found in the queue-5.19 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 4007e46f54480dab067012ec784dd9afe7572024
Author: Manikanta Pubbisetty <quic_mpubbise@xxxxxxxxxxx>
Date:   Tue May 17 11:22:41 2022 +0530

    ath11k: Init hw_params before setting up AHB resources
    
    [ Upstream commit bebcfd2534a63ab7e7325f5337662bc84ca038b6 ]
    
    As part of adding the support of WCN6750 to ath11k, bus_params
    were moved to hw_params and this regressed the initialization
    of WCN6750. By the time AHB resources are setup for WCN6750,
    hw_params will not be initialized and therefore initialization
    for WCN6750 will fail. This is applicable only for WCN6750,
    no other device is impacted.
    
    Fix this by moving the initialization of hw_params before
    setting up AHB resources.
    
    Tested-on: WCN6750 hw1.0 AHB WLAN.MSL.1.0.1-00887-QCAMSLSWPLZ-1
    
    Fixes: 00402f49d26f ("ath11k: Add support for WCN6750 device")
    Signed-off-by: Manikanta Pubbisetty <quic_mpubbise@xxxxxxxxxxx>
    Signed-off-by: Kalle Valo <quic_kvalo@xxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20220517055241.15885-1-quic_mpubbise@xxxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/wireless/ath/ath11k/ahb.c b/drivers/net/wireless/ath/ath11k/ahb.c
index fa11807f48a9..d7d33d5cdfc5 100644
--- a/drivers/net/wireless/ath/ath11k/ahb.c
+++ b/drivers/net/wireless/ath/ath11k/ahb.c
@@ -976,11 +976,11 @@ static int ath11k_ahb_probe(struct platform_device *pdev)
 	ab->hw_rev = hw_rev;
 	platform_set_drvdata(pdev, ab);
 
-	ret = ath11k_ahb_setup_resources(ab);
+	ret = ath11k_core_pre_init(ab);
 	if (ret)
 		goto err_core_free;
 
-	ret = ath11k_core_pre_init(ab);
+	ret = ath11k_ahb_setup_resources(ab);
 	if (ret)
 		goto err_core_free;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux