From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933411AbdBPVFS (ORCPT ); Thu, 16 Feb 2017 16:05:18 -0500 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:41796 "EHLO mail2-relais-roc.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932988AbdBPVFR (ORCPT ); Thu, 16 Feb 2017 16:05:17 -0500 X-IronPort-AV: E=Sophos;i="5.35,169,1484002800"; d="scan'208";a="260842626" Date: Thu, 16 Feb 2017 22:05:15 +0100 (CET) From: Julia Lawall X-X-Sender: jll@hadrien To: simran singhal cc: gregkh@linuxfoundation.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, outreachy-kernel@googlegroups.com Subject: Re: [Outreachy kernel] [PATCH 2/3] staging: rtl8192u: Fixed 'tabstop' coding style warnings In-Reply-To: <20170216210249.GA28497@singhal-Inspiron-5558> Message-ID: References: <20170216210249.GA28497@singhal-Inspiron-5558> 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 List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The subject line says "warnings", but there seems to be only one. julia On Fri, 17 Feb 2017, simran singhal wrote: > Replace a mix of tabs and spaces indentation by tabs only. > > Fixed checkpatch warning "Statements should start on a tabstop" in > rtl8192u module. > > Signed-off-by: simran singhal > --- > drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c b/drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c > index 563d7fe..814ab5a 100644 > --- a/drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c > +++ b/drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c > @@ -666,7 +666,7 @@ int ieee80211_wx_set_encode_ext(struct ieee80211_device *ieee, > if (ieee->set_security) > ieee->set_security(ieee->dev, &sec); > > - if (ieee->reset_on_keychange && > + if (ieee->reset_on_keychange && > ieee->iw_mode != IW_MODE_INFRA && > ieee->reset_port && ieee->reset_port(dev)) { > IEEE80211_DEBUG_WX("%s: reset_port failed\n", dev->name); > -- > 2.7.4 > > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To post to this group, send email to outreachy-kernel@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20170216210249.GA28497%40singhal-Inspiron-5558. > For more options, visit https://groups.google.com/d/optout. >