Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751771AbbHRFCb (ORCPT ); Tue, 18 Aug 2015 01:02:31 -0400 Received: from mail-pa0-f47.google.com ([209.85.220.47]:34353 "EHLO mail-pa0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751123AbbHRFCa (ORCPT ); Tue, 18 Aug 2015 01:02:30 -0400 Date: Tue, 18 Aug 2015 10:32:22 +0530 From: Sudip Mukherjee To: =?iso-8859-1?Q?Rapha=EBl?= Beamonte Cc: Greg Kroah-Hartman , devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Greg Donald , Cristina Opriceana Subject: Re: [PATCH 02/20] staging: rtl8192u: r8192U_core: fix consistent spacing code style error Message-ID: <20150818050222.GB2941@sudip-pc> References: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1980 Lines: 41 On Sat, Aug 15, 2015 at 09:33:58PM -0400, Rapha?l Beamonte wrote: > Fix multiple occurences of the need consistent spacing code style error > > Signed-off-by: Rapha?l Beamonte > --- > drivers/staging/rtl8192u/r8192U_core.c | 28 ++++++++++++++-------------- > 1 file changed, 14 insertions(+), 14 deletions(-) > > diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c > index 915493d..c4ab2a8 100644 > --- a/drivers/staging/rtl8192u/r8192U_core.c > +++ b/drivers/staging/rtl8192u/r8192U_core.c > @@ -2182,8 +2182,8 @@ static void rtl8192_init_priv_variable(struct net_device *dev) > priv->EarlyRxThreshold = 7; > priv->enable_gpio0 = 0; > priv->TransmitConfig = > - (TCR_MXDMA_2048< - (priv->ShortRetryLimit< + (TCR_MXDMA_2048< + (priv->ShortRetryLimit<ShortRetryLimit << TCR_SRL_OFFSET) | // Short retry limit > > @@ -2304,7 +2304,7 @@ static void rtl8192_read_eeprom_info(struct net_device *dev) > tmpValue = eprom_read(dev, EEPROM_ChannelPlan>>1); > priv->eeprom_ChannelPlan = (tmpValue & 0xff00)>>8; > priv->btxpowerdata_readfromEEPORM = true; > - priv->eeprom_CustomerID = eprom_read(dev, (EEPROM_Customer_ID>>1)) >>8; > + priv->eeprom_CustomerID = eprom_read(dev, (EEPROM_Customer_ID>>1))>>8; This should be: priv->eeprom_CustomerID = eprom_read(dev, (EEPROM_Customer_ID>>1)) >> 8; regards sudip -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/