From patchwork Thu Jul 6 06:42:20 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kalle Valo X-Patchwork-Id: 9827511 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.web.codeaurora.org (Postfix) with ESMTP id 478E660317 for ; Thu, 6 Jul 2017 06:42:47 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 72678285DB for ; Thu, 6 Jul 2017 06:42:46 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 67048285E6; Thu, 6 Jul 2017 06:42:46 +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=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, 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 333FC285E7 for ; Thu, 6 Jul 2017 06:42:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753136AbdGFGmn (ORCPT ); Thu, 6 Jul 2017 02:42:43 -0400 Received: from sabertooth02.qualcomm.com ([65.197.215.38]:11853 "EHLO sabertooth02.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753031AbdGFGmn (ORCPT ); Thu, 6 Jul 2017 02:42:43 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=qca.qualcomm.com; i=@qca.qualcomm.com; q=dns/txt; s=qcdkim; t=1499323362; x=1530859362; h=subject:from:to:cc:date:message-id:mime-version: content-transfer-encoding; bh=nWDiHbIMDz+E+zGFTKVm/WZg6EwdZKhGQdM8RAjUUXg=; b=LCTRUm0cs29wGszXnIC3rLuMCfffTyeOnkCwYtp9JH/u1FnpYI2+vISb nrsU9cYbEbBekvK3uD2e0NbE89xYOVlqUeGThmwoacV7VvtIkVKxhsMdw eGUqa6YYOHvH1LseajtoVpKEeQID8rGrnoDUCDzBvZROjxSq1Z42HkT+2 A=; X-IronPort-AV: E=Sophos;i="5.40,315,1496127600"; d="scan'208";a="110881425" Received: from unknown (HELO Ironmsg03-L.qualcomm.com) ([10.53.140.110]) by sabertooth02.qualcomm.com with ESMTP; 05 Jul 2017 23:42:42 -0700 X-IronPort-AV: E=McAfee;i="5800,7501,8582"; a="1404900887" X-MGA-submission: =?us-ascii?q?MDGG3gstAr/4ICl8pVyxcnGIoBwkZC1IOp918V?= =?us-ascii?q?CyKDErrLrcxQZ/6cZPcCczn5t+Eo1mqvSLzf3gS6vn8RYvwMsqicORnq?= =?us-ascii?q?rBf22vBlu+l2jw0/UScyZrwLlmUtn89r1xdhC63hFull8A/GAHCl342Y?= =?us-ascii?q?0u?= Received: from nasanexm02f.na.qualcomm.com ([10.85.0.87]) by Ironmsg03-L.qualcomm.com with ESMTP/TLS/RC4-SHA; 05 Jul 2017 23:42:41 -0700 Received: from eusanexr01a.eu.qualcomm.com (10.85.0.97) by nasanexm02f.na.qualcomm.com (10.85.0.87) with Microsoft SMTP Server (TLS) id 15.0.1178.4; Wed, 5 Jul 2017 23:42:41 -0700 Received: from potku.adurom.net (10.80.80.8) by eusanexr01a.eu.qualcomm.com (10.85.0.97) with Microsoft SMTP Server (TLS) id 15.0.1178.4; Wed, 5 Jul 2017 23:42:38 -0700 Subject: [PATCH] ath10k: fix indenting in ath10k_wmi_update_noa() From: Kalle Valo To: CC: Date: Thu, 6 Jul 2017 09:42:20 +0300 Message-ID: <149932333976.15174.4921279022358234069.stgit@potku.adurom.net> User-Agent: StGit/0.17.1-17-ge4e0 MIME-Version: 1.0 X-Originating-IP: [10.80.80.8] X-ClientProxiedBy: NASANEXM01C.na.qualcomm.com (10.85.0.83) To eusanexr01a.eu.qualcomm.com (10.85.0.97) 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 Commit 59ae1d127ac0 ("networking: introduce and use skb_put_data()") introduced a new checkpatch warning: drivers/net/wireless/ath/ath10k/wmi.c:3308: code indent should use tabs where possible Fix that. Signed-off-by: Kalle Valo --- drivers/net/wireless/ath/ath10k/wmi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c index 3efb404b83c0..96cd1ebd6a7e 100644 --- a/drivers/net/wireless/ath/ath10k/wmi.c +++ b/drivers/net/wireless/ath/ath10k/wmi.c @@ -3305,7 +3305,7 @@ static void ath10k_wmi_update_noa(struct ath10k *ar, struct ath10k_vif *arvif, if (arvif->u.ap.noa_data) if (!pskb_expand_head(bcn, 0, arvif->u.ap.noa_len, GFP_ATOMIC)) skb_put_data(bcn, arvif->u.ap.noa_data, - arvif->u.ap.noa_len); + arvif->u.ap.noa_len); } static int ath10k_wmi_op_pull_swba_ev(struct ath10k *ar, struct sk_buff *skb,