diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-08-29 23:00:23 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-16 19:24:56 -0400 |
commit | e91d2352bb6ebd061b362b3c632ec517ac0c23b1 (patch) | |
tree | 9f7367a2ffd833b3e8f6b6e134f651af7c7e05e8 /drivers | |
parent | 272b98c6455f00884f0350f775c5342358ebb73f (diff) |
spi: tegra: Use DIV_ROUND_UP instead of open coded
This also makes the intention more clear.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/spi/spi-tegra114.c | 2 | ||||
-rw-r--r-- | drivers/spi/spi-tegra20-sflash.c | 2 | ||||
-rw-r--r-- | drivers/spi/spi-tegra20-slink.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/spi/spi-tegra114.c b/drivers/spi/spi-tegra114.c index 145dd435483b..946ff7377352 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( | |||
267 | unsigned max_len; | 267 | unsigned max_len; |
268 | unsigned total_fifo_words; | 268 | unsigned total_fifo_words; |
269 | 269 | ||
270 | tspi->bytes_per_word = (bits_per_word - 1) / 8 + 1; | 270 | tspi->bytes_per_word = DIV_ROUND_UP(bits_per_word, 8); |
271 | 271 | ||
272 | if (bits_per_word == 8 || bits_per_word == 16) { | 272 | if (bits_per_word == 8 || bits_per_word == 16) { |
273 | tspi->is_packed = 1; | 273 | tspi->is_packed = 1; |
diff --git a/drivers/spi/spi-tegra20-sflash.c b/drivers/spi/spi-tegra20-sflash.c index 1d814dc6e000..64c9cf511175 100644 --- a/drivers/spi/spi-tegra20-sflash.c +++ b/drivers/spi/spi-tegra20-sflash.c | |||
@@ -173,7 +173,7 @@ static unsigned tegra_sflash_calculate_curr_xfer_param( | |||
173 | unsigned remain_len = t->len - tsd->cur_pos; | 173 | unsigned remain_len = t->len - tsd->cur_pos; |
174 | unsigned max_word; | 174 | unsigned max_word; |
175 | 175 | ||
176 | tsd->bytes_per_word = (t->bits_per_word - 1) / 8 + 1; | 176 | tsd->bytes_per_word = DIV_ROUND_UP(t->bits_per_word, 8); |
177 | max_word = remain_len / tsd->bytes_per_word; | 177 | max_word = remain_len / tsd->bytes_per_word; |
178 | if (max_word > SPI_FIFO_DEPTH) | 178 | if (max_word > SPI_FIFO_DEPTH) |
179 | max_word = SPI_FIFO_DEPTH; | 179 | max_word = SPI_FIFO_DEPTH; |
diff --git a/drivers/spi/spi-tegra20-slink.c b/drivers/spi/spi-tegra20-slink.c index c70353672a23..231b84523d37 100644 --- a/drivers/spi/spi-tegra20-slink.c +++ b/drivers/spi/spi-tegra20-slink.c | |||
@@ -283,7 +283,7 @@ static unsigned tegra_slink_calculate_curr_xfer_param( | |||
283 | unsigned total_fifo_words; | 283 | unsigned total_fifo_words; |
284 | 284 | ||
285 | bits_per_word = t->bits_per_word; | 285 | bits_per_word = t->bits_per_word; |
286 | tspi->bytes_per_word = (bits_per_word - 1) / 8 + 1; | 286 | tspi->bytes_per_word = DIV_ROUND_UP(bits_per_word, 8); |
287 | 287 | ||
288 | if (bits_per_word == 8 || bits_per_word == 16) { | 288 | if (bits_per_word == 8 || bits_per_word == 16) { |
289 | tspi->is_packed = 1; | 289 | tspi->is_packed = 1; |