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=-1.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS 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 F3658C4646F for ; Sat, 4 Aug 2018 08:12:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 94FCF217BF for ; Sat, 4 Aug 2018 08:12:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 94FCF217BF Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=lip6.fr Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727121AbeHDKLw (ORCPT ); Sat, 4 Aug 2018 06:11:52 -0400 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:25386 "EHLO mail3-relais-sop.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726676AbeHDKLw (ORCPT ); Sat, 4 Aug 2018 06:11:52 -0400 X-IronPort-AV: E=Sophos;i="5.51,442,1526335200"; d="scan'208";a="274959825" Received: from abo-214-111-68.mrs.modulonet.fr (HELO [192.168.0.15]) ([85.68.111.214]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Aug 2018 10:11:54 +0200 Date: Sat, 4 Aug 2018 10:11:54 +0200 (CEST) From: Julia Lawall X-X-Sender: jll@hadrien To: Sohil Ladhani cc: Greg Kroah-Hartman , Larry Finger , Kees Cook , Julia Lawall , Nathan Chancellor , Ping-Ke Shih , Arushi Singhal , "Frank A. Cancio Bello" , devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] Staging: rtlwifi: base: Fixed line ending with parentheses In-Reply-To: <20180804080817.GA2140@zenus> Message-ID: References: <20180804080817.GA2140@zenus> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, 4 Aug 2018, Sohil Ladhani wrote: > This patch fixes the "Lines should not end with a '('" problem reported by > checkpatch There is still no v2 in the subject line, or explanation of what has changed under the --- (I assume this is still the same place and the same code; I didn't keep the old versions to check). julia > > Signed-off-by: Sohil Ladhani > --- > drivers/staging/rtlwifi/base.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/drivers/staging/rtlwifi/base.c b/drivers/staging/rtlwifi/base.c > index 094827c1879a..654aa4e068ba 100644 > --- a/drivers/staging/rtlwifi/base.c > +++ b/drivers/staging/rtlwifi/base.c > @@ -685,9 +685,8 @@ static void _rtl_query_protection_mode(struct ieee80211_hw *hw, > } > } > > -u8 rtl_mrate_idx_to_arfr_id( > - struct ieee80211_hw *hw, u8 rate_index, > - enum wireless_mode wirelessmode) > +u8 rtl_mrate_idx_to_arfr_id(struct ieee80211_hw *hw, u8 rate_index, > + enum wireless_mode wirelessmode) > { > struct rtl_priv *rtlpriv = rtl_priv(hw); > struct rtl_phy *rtlphy = &rtlpriv->phy; > -- > 2.18.0 > >