From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754606AbdDLPli (ORCPT ); Wed, 12 Apr 2017 11:41:38 -0400 Received: from mail-pf0-f194.google.com ([209.85.192.194]:34257 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752513AbdDLPlf (ORCPT ); Wed, 12 Apr 2017 11:41:35 -0400 Date: Wed, 12 Apr 2017 08:41:31 -0700 From: Dmitry Torokhov To: Martin Kepplinger Cc: christian.gmeiner@gmail.com, linux@roeck-us.net, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org Subject: Re: [PATCH 3/3] input: touchscreen: ar1021_i2c: coding style fixes Message-ID: <20170412154131.GC6297@dtor-ws> References: <1491906479-17639-1-git-send-email-martin.kepplinger@ginzinger.com> <1491906479-17639-3-git-send-email-martin.kepplinger@ginzinger.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1491906479-17639-3-git-send-email-martin.kepplinger@ginzinger.com> 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 On Tue, Apr 11, 2017 at 12:27:59PM +0200, Martin Kepplinger wrote: > Use the common kernel coding style and corrently align parameters with > open parenthesis. > > Signed-off-by: Martin Kepplinger Applied, thank you. > --- > drivers/input/touchscreen/ar1021_i2c.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/input/touchscreen/ar1021_i2c.c b/drivers/input/touchscreen/ar1021_i2c.c > index 1767257..cac7eeb 100644 > --- a/drivers/input/touchscreen/ar1021_i2c.c > +++ b/drivers/input/touchscreen/ar1021_i2c.c > @@ -38,7 +38,7 @@ static irqreturn_t ar1021_i2c_irq(int irq, void *dev_id) > int retval; > > retval = i2c_master_recv(ar1021->client, > - ar1021->data, sizeof(ar1021->data)); > + ar1021->data, sizeof(ar1021->data)); > if (retval != sizeof(ar1021->data)) > goto out; > > @@ -78,7 +78,7 @@ static void ar1021_i2c_close(struct input_dev *dev) > } > > static int ar1021_i2c_probe(struct i2c_client *client, > - const struct i2c_device_id *id) > + const struct i2c_device_id *id) > { > struct ar1021_i2c *ar1021; > struct input_dev *input; > -- > 2.1.4 > -- Dmitry