From patchwork Mon Jul 30 18:56:43 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kalle Valo X-Patchwork-Id: 10549583 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 56FD615E2 for ; Mon, 30 Jul 2018 18:56:49 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4597A2842A for ; Mon, 30 Jul 2018 18:56:49 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 39FBC286EC; Mon, 30 Jul 2018 18:56:49 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D2E9B2842A for ; Mon, 30 Jul 2018 18:56:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731016AbeG3UdI (ORCPT ); Mon, 30 Jul 2018 16:33:08 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:34342 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730400AbeG3UdI (ORCPT ); Mon, 30 Jul 2018 16:33:08 -0400 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 1536A602A7; Mon, 30 Jul 2018 18:56:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1532977007; bh=7z5T7HNKhkEsUUYvD4b7B9R1WmE19NHmzY54PT00WsY=; h=Subject:From:To:Cc:Date:From; b=JbPJtGF+aIeOMbZU1ZT23Tf3egvBq+YisBqkiegkNacTQM9WbC66w4eF0Irj0aohu htXjKvo7l4lp4UEK2Ep/SvMwxCxddKSozEyPEZ5TX2mwcHqwJrReXcv4pPIMBwgzrs kzg/pVbPqWk0ENIMEMRHQgVjpiJa9fFOUsVB2uD0= Received: from potku.adurom.net (88-114-240-52.elisa-laajakaista.fi [88.114.240.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: kvalo@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id 23415602A7; Mon, 30 Jul 2018 18:56:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1532977006; bh=7z5T7HNKhkEsUUYvD4b7B9R1WmE19NHmzY54PT00WsY=; h=Subject:From:To:Cc:Date:From; b=n1V/4sAsx+bV/B5Tneqdiut0TFLM7SgSXCRuvIOzI+GKnOlu1JkUN9UWf0XEqm1zv 3RTsTRI/1KiBAfzqPB4lPuj43VNJihd2r1ab/+7tABftUJM5F/UFB+X1oBwNSbD5XB bdO0OCQCdRkyeqGs9DgflZ5/70E6kQzjoVfu98+k= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 23415602A7 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=kvalo@codeaurora.org Subject: [PATCH] ath10k: fix parenthesis alignment From: Kalle Valo To: ath10k@lists.infradead.org Cc: linux-wireless@vger.kernel.org Date: Mon, 30 Jul 2018 21:56:43 +0300 Message-ID: <153297700266.4874.12439168003972242663.stgit@potku.adurom.net> User-Agent: StGit/0.17.1-17-ge4e0 MIME-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP These were recently introduced and found by checkpatch: drivers/net/wireless/ath/ath10k/mac.c:6118: Alignment should match open parenthesis drivers/net/wireless/ath/ath10k/mac.c:6121: Alignment should match open parenthesis drivers/net/wireless/ath/ath10k/mac.c:6124: Alignment should match open parenthesis Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath10k/mac.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c index f068e2b9eacc..b6830fa16e99 100644 --- a/drivers/net/wireless/ath/ath10k/mac.c +++ b/drivers/net/wireless/ath/ath10k/mac.c @@ -6107,13 +6107,13 @@ static void ath10k_sta_rc_update_wk(struct work_struct *wk) mode = chan_to_phymode(&def); ath10k_dbg(ar, ATH10K_DBG_MAC, "mac update sta %pM peer bw %d phymode %d\n", - sta->addr, bw, mode); + sta->addr, bw, mode); err = ath10k_wmi_peer_set_param(ar, arvif->vdev_id, sta->addr, - WMI_PEER_PHYMODE, mode); + WMI_PEER_PHYMODE, mode); if (err) { ath10k_warn(ar, "failed to update STA %pM peer phymode %d: %d\n", - sta->addr, mode, err); + sta->addr, mode, err); goto exit; }