ソースを参照

ath10k: remove useless test before clk_disable_unprepare

clk_disable_unprepare() already checks that the clock pointer is valid.
No need to test it before calling it.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
YueHaibing 7 年 前
コミット
cf3c0ae6a3
1 ファイル変更3 行追加6 行削除
  1. 3 6
      drivers/net/wireless/ath/ath10k/ahb.c

+ 3 - 6
drivers/net/wireless/ath/ath10k/ahb.c

@@ -180,14 +180,11 @@ static void ath10k_ahb_clock_disable(struct ath10k *ar)
 {
 {
 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
 	struct ath10k_ahb *ar_ahb = ath10k_ahb_priv(ar);
 
 
-	if (!IS_ERR_OR_NULL(ar_ahb->cmd_clk))
-		clk_disable_unprepare(ar_ahb->cmd_clk);
+	clk_disable_unprepare(ar_ahb->cmd_clk);
 
 
-	if (!IS_ERR_OR_NULL(ar_ahb->ref_clk))
-		clk_disable_unprepare(ar_ahb->ref_clk);
+	clk_disable_unprepare(ar_ahb->ref_clk);
 
 
-	if (!IS_ERR_OR_NULL(ar_ahb->rtc_clk))
-		clk_disable_unprepare(ar_ahb->rtc_clk);
+	clk_disable_unprepare(ar_ahb->rtc_clk);
 }
 }
 
 
 static int ath10k_ahb_rst_ctrl_init(struct ath10k *ar)
 static int ath10k_ahb_rst_ctrl_init(struct ath10k *ar)