From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: Nicholas Mc Guire <hofrat@osadl.org>, Mark Brown <broonie@kernel.org>
Cc: <linux-spi@vger.kernel.org>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] spi: atmel: cleanup wait_for_completion return handling
Date: Wed, 4 Feb 2015 10:18:00 +0100 [thread overview]
Message-ID: <54D1E3C8.7000304@atmel.com> (raw)
In-Reply-To: <1422891811-28541-1-git-send-email-hofrat@osadl.org>
Le 02/02/2015 16:43, Nicholas Mc Guire a écrit :
> return type of wait_for_completion_timeout is unsigned long not int, this
> patch adds an appropriate variable and fixes up the assignment. It removes
> the else branch as the only thing it was doing is assigning ret = 0; - but
> ret is never used thereafter so that is not needed. As the string in
> dev_err already states "timeout" there is little point in printing the 0.
> A typo in "trasfer" -> transfer is also fixed.
>
> Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Thanks. Bye.
> ---
>
> v2: fixes commit message and whitespace damage reported by
> Mark Brown <broonie@kernel.org>
>
> This patch was only compile tested with at91_dt_defconfig
> (implies CONFIG_SPI_ATMEL=y)
>
> Patch is against 3.19.0-rc6 (localversion-next = -next-20150202)
>
> drivers/spi/spi-atmel.c | 12 +++++-------
> 1 file changed, 5 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/spi/spi-atmel.c b/drivers/spi/spi-atmel.c
> index 23d8f5f5..9af7841 100644
> --- a/drivers/spi/spi-atmel.c
> +++ b/drivers/spi/spi-atmel.c
> @@ -1046,6 +1046,7 @@ static int atmel_spi_one_transfer(struct spi_master *master,
> struct atmel_spi_device *asd;
> int timeout;
> int ret;
> + unsigned long dma_timeout;
>
> as = spi_master_get_devdata(master);
>
> @@ -1103,15 +1104,12 @@ static int atmel_spi_one_transfer(struct spi_master *master,
>
> /* interrupts are disabled, so free the lock for schedule */
> atmel_spi_unlock(as);
> - ret = wait_for_completion_timeout(&as->xfer_completion,
> - SPI_DMA_TIMEOUT);
> + dma_timeout = wait_for_completion_timeout(&as->xfer_completion,
> + SPI_DMA_TIMEOUT);
> atmel_spi_lock(as);
> - if (WARN_ON(ret == 0)) {
> - dev_err(&spi->dev,
> - "spi trasfer timeout, err %d\n", ret);
> + if (WARN_ON(dma_timeout == 0)) {
> + dev_err(&spi->dev, "spi transfer timeout\n");
> as->done_status = -EIO;
> - } else {
> - ret = 0;
> }
>
> if (as->done_status)
>
--
Nicolas Ferre
next prev parent reply other threads:[~2015-02-04 9:18 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-02 15:43 [PATCH v2] spi: atmel: cleanup wait_for_completion return handling Nicholas Mc Guire
2015-02-04 9:18 ` Nicolas Ferre [this message]
[not found] ` <1422891811-28541-1-git-send-email-hofrat-Q945KHDl0DbYtjvyW6yDsg@public.gmane.org>
2015-02-04 11:26 ` Mark Brown
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=54D1E3C8.7000304@atmel.com \
--to=nicolas.ferre@atmel.com \
--cc=broonie@kernel.org \
--cc=hofrat@osadl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
/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).