mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Antony Pavlov <antonynpavlov@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] spi: altera_spi: fix altera_spi_setup() return error codes
Date: Tue, 8 Apr 2014 08:09:29 +0200	[thread overview]
Message-ID: <20140408060929.GS27055@pengutronix.de> (raw)
In-Reply-To: <1396857039-17837-1-git-send-email-antonynpavlov@gmail.com>

On Mon, Apr 07, 2014 at 11:50:39AM +0400, Antony Pavlov wrote:
> Reported-by: Sascha Hauer <s.hauer@pengutronix.de>
> Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>

Applied. Thanks for fixing this, now there's one place less to copy
wrong code :)

Sascha

> ---
>  drivers/spi/altera_spi.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/spi/altera_spi.c b/drivers/spi/altera_spi.c
> index 8803d9e..983b877 100644
> --- a/drivers/spi/altera_spi.c
> +++ b/drivers/spi/altera_spi.c
> @@ -34,18 +34,18 @@ static int altera_spi_setup(struct spi_device *spi)
>  	if (spi->bits_per_word != altera_spi->databits) {
>  		dev_err(master->dev, " master doesn't support %d bits per word requested by %s\n",
>  			spi->bits_per_word, spi_dev.name);
> -		return -1;
> +		return -EINVAL;
>  	}
>  
>  	if ((spi->mode & (SPI_CPHA | SPI_CPOL)) != altera_spi->mode) {
>  		dev_err(master->dev, " master doesn't support SPI_MODE%d requested by %s\n",
>  			spi->mode & (SPI_CPHA | SPI_CPOL), spi_dev.name);
> -		return -1;
> +		return -EINVAL;
>  	}
>  
>  	if (spi->max_speed_hz < altera_spi->speed) {
>  		dev_err(master->dev, " frequency is too high for %s\n", spi_dev.name);
> -		return -1;
> +		return -EINVAL;
>  	}
>  
>  	altera_spi_cs_inactive(spi);
> -- 
> 1.9.0
> 
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      reply	other threads:[~2014-04-08  6:09 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-07  7:50 Antony Pavlov
2014-04-08  6:09 ` Sascha Hauer [this message]

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=20140408060929.GS27055@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=antonynpavlov@gmail.com \
    --cc=barebox@lists.infradead.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