Commit 0beb0a6d authored by Jarkko Nikula's avatar Jarkko Nikula Committed by Mark Brown

spi: au1550: Simplify au1550_spi_setupxfer()

SPI core validates both bits_per_word and speed_hz transfer parameters and
defaults to spi->bits_per_word and spi->max_speed_hz in case these per
transfer parameters are not set. This can simplify a little the
au1550_spi_setupxfer() as there is need to check only for valid
"struct spi_transfer" pointer.
Signed-off-by: default avatarJarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 6ff33f39
...@@ -233,13 +233,12 @@ static int au1550_spi_setupxfer(struct spi_device *spi, struct spi_transfer *t) ...@@ -233,13 +233,12 @@ static int au1550_spi_setupxfer(struct spi_device *spi, struct spi_transfer *t)
unsigned bpw, hz; unsigned bpw, hz;
u32 cfg, stat; u32 cfg, stat;
bpw = spi->bits_per_word;
hz = spi->max_speed_hz;
if (t) { if (t) {
if (t->bits_per_word) bpw = t->bits_per_word;
bpw = t->bits_per_word; hz = t->speed_hz;
if (t->speed_hz) } else {
hz = t->speed_hz; bpw = spi->bits_per_word;
hz = spi->max_speed_hz;
} }
if (!hz) if (!hz)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment