diff options
author | Mark Brown <broonie@linaro.org> | 2013-10-25 09:51:39 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-10-25 09:51:39 +0100 |
commit | 5b380cb1522e774e2fd67392532963426a749ce8 (patch) | |
tree | f8d0fcbebb14c387ed4dd71509aaa7af5a5ca9df /drivers/spi/spi-tegra114.c | |
parent | 84b61465645fc075ab1128ebd4c34f6905037634 (diff) | |
parent | e91d2352bb6ebd061b362b3c632ec517ac0c23b1 (diff) | |
download | linux-5b380cb1522e774e2fd67392532963426a749ce8.tar.bz2 |
Merge remote-tracking branch 'spi/topic/tegra' into spi-next
Diffstat (limited to 'drivers/spi/spi-tegra114.c')
-rw-r--r-- | drivers/spi/spi-tegra114.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-tegra114.c b/drivers/spi/spi-tegra114.c index bb3a19f2ed39..b3821fb9da3f 100644 --- a/drivers/spi/spi-tegra114.c +++ b/drivers/spi/spi-tegra114.c @@ -267,7 +267,7 @@ static unsigned tegra_spi_calculate_curr_xfer_param( unsigned max_len; unsigned total_fifo_words; - tspi->bytes_per_word = (bits_per_word - 1) / 8 + 1; + tspi->bytes_per_word = DIV_ROUND_UP(bits_per_word, 8); if (bits_per_word == 8 || bits_per_word == 16) { tspi->is_packed = 1; |