diff options
author | Uwe Poeche <uwe.poeche@siemens.com> | 2019-07-17 14:27:13 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2019-07-23 15:51:04 +0000 |
commit | 17362bee850a01a3d1ddef11a39640b762a3f0a9 (patch) | |
tree | c95b740030844cf806257cecfbbebed89e9fe4df /src/drivers/spi/amic.c | |
parent | 868c8074b585e8465c315b0fbcafb940eaec27b7 (diff) |
include/spi-generic: Append unit to macro names
This patch appends a unit (milliseconds) to time-out macro names for
better understanding the code which is using the macros.
Change-Id: Ibc4beda2660a83fd5f0ed325b2ee3148c6d96639
Signed-off-by: Uwe Poeche <uwe.poeche@siemens.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34384
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/spi/amic.c')
-rw-r--r-- | src/drivers/spi/amic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drivers/spi/amic.c b/src/drivers/spi/amic.c index b580dc3df0..6e1234baa7 100644 --- a/src/drivers/spi/amic.c +++ b/src/drivers/spi/amic.c @@ -155,7 +155,8 @@ static int amic_write(const struct spi_flash *flash, u32 offset, size_t len, goto out; } - ret = spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT); + ret = spi_flash_cmd_wait_ready(flash, + SPI_FLASH_PROG_TIMEOUT_MS); if (ret) goto out; |