mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
spi: mpc8xxx_spi: Use DIV_ROUND_UP instead of open-coded
Use DIV_ROUND_UP to simplify the code. Signed-off-by: Axel Lin <axel.lin@ingics.com>
This commit is contained in:
parent
a444aa7a1c
commit
583fe6c3d8
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
|
|||
{
|
||||
volatile spi8xxx_t *spi = &((immap_t *) (CONFIG_SYS_IMMR))->spi;
|
||||
unsigned int tmpdout, tmpdin, event;
|
||||
int numBlks = bitlen / 32 + (bitlen % 32 ? 1 : 0);
|
||||
int numBlks = DIV_ROUND_UP(bitlen, 32);
|
||||
int tm, isRead = 0;
|
||||
unsigned char charSize = 32;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue