From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from saturn.retrosnub.co.uk ([178.18.118.26]:48125 "EHLO saturn.retrosnub.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751259AbcDPMcd (ORCPT ); Sat, 16 Apr 2016 08:32:33 -0400 Subject: Re: [PATCH 04/10] iio: adc: mcp3422: remove spaces before comma To: Slawomir Stepien , knaack.h@gmx.de, pmeerw@pmeerw.net References: <1460662602-2951-1-git-send-email-sst@poczta.fm> <1460662602-2951-5-git-send-email-sst@poczta.fm> Cc: linux-iio@vger.kernel.org, kernel-janitors@vger.kernel.org From: Jonathan Cameron Message-ID: <571230DF.6060602@kernel.org> Date: Sat, 16 Apr 2016 13:32:31 +0100 MIME-Version: 1.0 In-Reply-To: <1460662602-2951-5-git-send-email-sst@poczta.fm> Content-Type: text/plain; charset=windows-1252 Sender: linux-iio-owner@vger.kernel.org List-Id: linux-iio@vger.kernel.org On 14/04/16 20:36, Slawomir Stepien wrote: > This fixes the error reported by checkpatch.pl: > > ERROR: space prohibited before that ',' (ctx:WxW) > > Signed-off-by: Slawomir Stepien Applied - thanks > --- > drivers/iio/adc/mcp3422.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/iio/adc/mcp3422.c b/drivers/iio/adc/mcp3422.c > index d7b36ef..d1172dc 100644 > --- a/drivers/iio/adc/mcp3422.c > +++ b/drivers/iio/adc/mcp3422.c > @@ -61,9 +61,9 @@ > > static const int mcp3422_scales[4][4] = { > { 1000000, 500000, 250000, 125000 }, > - { 250000 , 125000, 62500 , 31250 }, > - { 62500 , 31250 , 15625 , 7812 }, > - { 15625 , 7812 , 3906 , 1953 } }; > + { 250000, 125000, 62500, 31250 }, > + { 62500, 31250, 15625, 7812 }, > + { 15625, 7812, 3906, 1953 } }; > > /* Constant msleep times for data acquisitions */ > static const int mcp3422_read_times[4] = { >