From: Jonathan Cameron <jic23@kernel.org>
To: Stefan Wahren <stefan.wahren@i2se.com>
Cc: "Hartmut Knaack" <knaack.h@gmx.de>,
"Lars-Peter Clausen" <lars@metafoo.de>,
"Peter Meerwald" <pmeerw@pmeerw.net>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
"Marek Vasut" <marex@denx.de>,
"Kristina Martšenko" <kristina.martsenko@gmail.com>,
"Fabio Estevam" <fabio.estevam@freescale.com>,
linux-iio@vger.kernel.org, devel@driverdev.osuosl.org
Subject: Re: [PATCH 2/6] iio: mxs-lradc: fix some spelling errors
Date: Sun, 19 Jul 2015 10:33:55 +0100 [thread overview]
Message-ID: <55AB6F03.9080709@kernel.org> (raw)
In-Reply-To: <1437222646-8742-3-git-send-email-stefan.wahren@i2se.com>
On 18/07/15 13:30, Stefan Wahren wrote:
> This patch fix some spelling errors in the comments.
>
> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Applied.
> ---
> drivers/staging/iio/adc/mxs-lradc.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/staging/iio/adc/mxs-lradc.c b/drivers/staging/iio/adc/mxs-lradc.c
> index 1ccb367..386a44d 100644
> --- a/drivers/staging/iio/adc/mxs-lradc.c
> +++ b/drivers/staging/iio/adc/mxs-lradc.c
> @@ -65,14 +65,14 @@
> * Once the pen touches the touchscreen, the touchscreen switches from
> * IRQ-driven mode to polling mode to prevent interrupt storm. The polling
> * is realized by worker thread, which is called every 20 or so milliseconds.
> - * This gives the touchscreen enough fluence and does not strain the system
> + * This gives the touchscreen enough fluency and does not strain the system
> * too much.
> */
> #define LRADC_TS_SAMPLE_DELAY_MS 5
>
> /*
> * The LRADC reads the following amount of samples from each touchscreen
> - * channel and the driver then computes avarage of these.
> + * channel and the driver then computes average of these.
> */
> #define LRADC_TS_SAMPLE_AMOUNT 4
>
> @@ -238,7 +238,7 @@ struct mxs_lradc {
> * CH5 -- Touch screen YNLR
> * CH6 -- Touch screen WIPER (5-wire only)
> *
> - * The bitfields below represents which parts of the LRADC block are
> + * The bit fields below represents which parts of the LRADC block are
> * switched into special mode of operation. These channels can not
> * be sampled as regular LRADC channels. The driver will refuse any
> * attempt to sample these channels.
> @@ -252,7 +252,7 @@ struct mxs_lradc {
> struct input_dev *ts_input;
>
> enum mxs_lradc_id soc;
> - enum lradc_ts_plate cur_plate; /* statemachine */
> + enum lradc_ts_plate cur_plate; /* state machine */
> bool ts_valid;
> unsigned ts_x_pos;
> unsigned ts_y_pos;
> @@ -812,7 +812,7 @@ static int mxs_lradc_read_single(struct iio_dev *iio_dev, int chan, int *val)
> int ret;
>
> /*
> - * See if there is no buffered operation in progess. If there is, simply
> + * See if there is no buffered operation in progress. If there is, simply
> * bail out. This can be improved to support both buffered and raw IO at
> * the same time, yet the code becomes horribly complicated. Therefore I
> * applied KISS principle here.
>
next prev parent reply other threads:[~2015-07-19 9:33 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-18 12:30 [PATCH V2 0/6] iio: mxs-lradc: Clean up and add datasheet names Stefan Wahren
2015-07-18 12:30 ` [PATCH 1/6] iio: mxs-lradc: clarify supported devices Stefan Wahren
2015-07-19 9:32 ` Jonathan Cameron
2015-07-18 12:30 ` [PATCH 2/6] iio: mxs-lradc: fix some spelling errors Stefan Wahren
2015-07-19 9:33 ` Jonathan Cameron [this message]
2015-07-18 12:30 ` [PATCH 3/6] iio: mxs-lradc: add missing include Stefan Wahren
2015-07-19 9:34 ` Jonathan Cameron
2015-07-18 12:30 ` [PATCH 4/6] iio: mxs-lradc: remove unnecessary header includes Stefan Wahren
2015-07-19 9:35 ` Jonathan Cameron
2015-07-18 12:30 ` [PATCH 5/6] iio: mxs-lradc: reorder " Stefan Wahren
2015-07-18 15:37 ` Marek Vasut
2015-07-19 9:37 ` Jonathan Cameron
2015-07-18 12:30 ` [PATCH 6/6] iio: mxs-lradc: add datasheet name for every usable channel Stefan Wahren
2015-07-19 9:40 ` Jonathan Cameron
2015-07-18 15:38 ` [PATCH V2 0/6] iio: mxs-lradc: Clean up and add datasheet names Marek Vasut
2015-07-19 9:45 ` Jonathan Cameron
2015-07-19 20:33 ` Dan Carpenter
2015-07-19 20:49 ` Dan Carpenter
2015-07-19 21:44 ` Jonathan Cameron
2015-07-19 22:06 ` Marek Vasut
2015-07-20 7:00 ` Dan Carpenter
2015-07-20 8:16 ` Marek Vasut
2015-07-19 21:08 ` Jonathan Cameron
2015-07-19 22:11 ` Marek Vasut
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=55AB6F03.9080709@kernel.org \
--to=jic23@kernel.org \
--cc=devel@driverdev.osuosl.org \
--cc=fabio.estevam@freescale.com \
--cc=gregkh@linuxfoundation.org \
--cc=knaack.h@gmx.de \
--cc=kristina.martsenko@gmail.com \
--cc=lars@metafoo.de \
--cc=linux-iio@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.