linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Stefan Wahren <stefan.wahren@i2se.com>
Cc: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>,
	linux-kernel@vger.kernel.org, lee.jones@linaro.org,
	linux-input@vger.kernel.org, pmeerw@pmeerw.net, jic23@kernel.org,
	knaack.h@gmx.de, lars@metafoo.de, harald@ccbib.org,
	fabio.estevam@freescale.com, linux-iio@vger.kernel.org,
	marex@denx.de
Subject: Re: [PATCH v2 3/4] input: touchscreen: mxs-lradc: Add support for touchscreen
Date: Thu, 23 Jun 2016 10:24:03 -0700	[thread overview]
Message-ID: <20160623172403.GF32561@dtor-ws> (raw)
In-Reply-To: <1443695961.58810.3de61248-4cae-4f94-b8a2-ef63c5c3ec1b.open-xchange@email.1und1.de>

On Wed, Jun 15, 2016 at 11:26:18PM +0200, Stefan Wahren wrote:
> Hi,
> 
> unfortunately i still don't have a touchscreen to test this patch.
> 
> > Ksenija Stanojevic <ksenija.stanojevic@gmail.com> hat am 8. Juni 2016 um 16:48
> > geschrieben:
> > 
> > 
> > Add 4-wire/5-wire touchscreen controller.
> > 
> > Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
> > ---
> > Changes in v2:
> >  - do not change spacing in Kconfig
> >  - remove dev.parent
> >  - rename err_ts_register to error
> >  - combine functions hw_stop and disable_ts so that mxs_lradc_ts_remove
> >    could be deleted.
> >  - add spinlock in struct mxs_lradc_ts to enable locking in interrupt handler.
> >  - only grab irqs that are relevant to touchscreen
> >  - use direct return instead assigning error to touch_ret in probe function.
> >  - change licence to GPL
> >  - add copyright
> > 
> >  drivers/input/touchscreen/Kconfig        |  10 +
> >  drivers/input/touchscreen/Makefile       |   1 +
> >  drivers/input/touchscreen/mxs-lradc-ts.c | 726
> > +++++++++++++++++++++++++++++++
> >  3 files changed, 737 insertions(+)
> >  create mode 100644 drivers/input/touchscreen/mxs-lradc-ts.c
> > 
> > diff --git a/drivers/input/touchscreen/mxs-lradc-ts.c
> > b/drivers/input/touchscreen/mxs-lradc-ts.c
> > new file mode 100644
> > index 0000000..778bb61
> > --- /dev/null
> > +++ b/drivers/input/touchscreen/mxs-lradc-ts.c
> > @@ -0,0 +1,726 @@
> > +/*
> > + * Freescale MXS LRADC driver
> 
> touchscreen driver
> 
> > + *
> > + * Copyright (c) 2012 DENX Software Engineering, GmbH.
> > + * Marek Vasut <marex@denx.de>
> > + * Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
> > + *
> > + * This program is free software; you can redistribute it and/or modify
> > + * it under the terms of the GNU General Public License as published by
> > + * the Free Software Foundation; either version 2 of the License, or
> > + * (at your option) any later version.
> > + *
> > + * This program is distributed in the hope that it will be useful,
> > + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> > + * GNU General Public License for more details.
> > + */
> > +
> > ...
> > +
> > +static struct platform_driver mxs_lradc_ts_driver = {
> > +	.driver	= {
> > +		.name = DRIVER_NAME_TS,
> > +	},
> > +	.probe	= mxs_lradc_ts_probe,
> > +};
> > +module_platform_driver(mxs_lradc_ts_driver);
> > +
> 
> MODULE_DESCRIPTION ?
> MODULE_AUTHOR ?

Once Stefan's comments addressed please add

Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

so that it can be merged through MFD tree.

> 
> > +MODULE_LICENSE("GPL");
> > -- 
> > 1.9.1
> >

Thanks.

-- 
Dmitry

  reply	other threads:[~2016-06-23 17:24 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-08 14:43 [PATCH v2 0/4] mxs-lradc: Split driver into MFD Ksenija Stanojevic
2016-06-08 14:45 ` [PATCH v2 1/4] mfd: mxs-lradc: Add support for mxs-lradc MFD Ksenija Stanojevic
2016-06-11 15:32   ` Jonathan Cameron
2016-06-15 21:17   ` Stefan Wahren
2016-06-08 14:47 ` [PATCH v2 2/4] iio: adc: mxs-lradc: Add support for adc driver Ksenija Stanojevic
2016-06-11 15:48   ` Jonathan Cameron
2016-06-08 14:48 ` [PATCH v2 3/4] input: touchscreen: mxs-lradc: Add support for touchscreen Ksenija Stanojevic
2016-06-15 21:26   ` Stefan Wahren
2016-06-23 17:24     ` Dmitry Torokhov [this message]
2016-06-08 14:49 ` [PATCH v2 4/4] iio: adc: mxs-lradc: Remove driver Ksenija Stanojevic
2016-06-11 15:50   ` Jonathan Cameron

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160623172403.GF32561@dtor-ws \
    --to=dmitry.torokhov@gmail.com \
    --cc=fabio.estevam@freescale.com \
    --cc=harald@ccbib.org \
    --cc=jic23@kernel.org \
    --cc=knaack.h@gmx.de \
    --cc=ksenija.stanojevic@gmail.com \
    --cc=lars@metafoo.de \
    --cc=lee.jones@linaro.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marex@denx.de \
    --cc=pmeerw@pmeerw.net \
    --cc=stefan.wahren@i2se.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).