From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A0F1EC3A59E for ; Wed, 4 Sep 2019 03:49:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7C2F921883 for ; Wed, 4 Sep 2019 03:49:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728184AbfIDDtc (ORCPT ); Tue, 3 Sep 2019 23:49:32 -0400 Received: from szxga07-in.huawei.com ([45.249.212.35]:55796 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726770AbfIDDtb (ORCPT ); Tue, 3 Sep 2019 23:49:31 -0400 Received: from DGGEMS411-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 3D56E88059C5BEA2F350; Wed, 4 Sep 2019 11:49:30 +0800 (CST) Received: from linux-ibm.site (10.175.102.37) by DGGEMS411-HUB.china.huawei.com (10.3.19.211) with Microsoft SMTP Server id 14.3.439.0; Wed, 4 Sep 2019 11:49:21 +0800 From: zhong jiang To: , , CC: , , Subject: [PATCH 3/3] ath10k: Drop unnecessary continue in ath10k_mac_update_vif_chan Date: Wed, 4 Sep 2019 11:46:24 +0800 Message-ID: <1567568784-9669-4-git-send-email-zhongjiang@huawei.com> X-Mailer: git-send-email 1.7.12.4 In-Reply-To: <1567568784-9669-1-git-send-email-zhongjiang@huawei.com> References: <1567568784-9669-1-git-send-email-zhongjiang@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.175.102.37] X-CFilter-Loop: Reflected Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Continue is not needed at the bottom of a loop. Hence just remove it. Signed-off-by: zhong jiang --- drivers/net/wireless/ath/ath10k/mac.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c index 12dad65..91e4635 100644 --- a/drivers/net/wireless/ath/ath10k/mac.c +++ b/drivers/net/wireless/ath/ath10k/mac.c @@ -7804,11 +7804,9 @@ static int ath10k_ampdu_action(struct ieee80211_hw *hw, continue; ret = ath10k_wmi_vdev_down(ar, arvif->vdev_id); - if (ret) { + if (ret) ath10k_warn(ar, "failed to down vdev %d: %d\n", arvif->vdev_id, ret); - continue; - } } /* All relevant vdevs are downed and associated channel resources -- 1.7.12.4