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>
This commit is contained in:
@@ -181,7 +181,8 @@ static int adesto_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;
|
||||
|
||||
|
@@ -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;
|
||||
|
||||
|
@@ -137,7 +137,8 @@ static int atmel_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;
|
||||
|
||||
|
@@ -270,7 +270,8 @@ static int eon_write(const struct spi_flash *flash,
|
||||
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) {
|
||||
printk(BIOS_WARNING, "SF: EON Page Program timeout\n");
|
||||
goto out;
|
||||
|
@@ -212,7 +212,8 @@ static int gigadevice_write(const struct spi_flash *flash, u32 offset,
|
||||
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;
|
||||
|
||||
|
@@ -249,7 +249,8 @@ static int macronix_write(const struct spi_flash *flash, u32 offset, size_t len,
|
||||
break;
|
||||
}
|
||||
|
||||
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)
|
||||
break;
|
||||
|
||||
|
@@ -264,7 +264,8 @@ static int spansion_write(const struct spi_flash *flash, u32 offset, size_t len,
|
||||
break;
|
||||
}
|
||||
|
||||
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)
|
||||
break;
|
||||
|
||||
|
@@ -232,7 +232,8 @@ int spi_flash_cmd_erase(const struct spi_flash *flash, u32 offset, size_t len)
|
||||
if (ret)
|
||||
goto out;
|
||||
|
||||
ret = spi_flash_cmd_wait_ready(flash, SPI_FLASH_PAGE_ERASE_TIMEOUT);
|
||||
ret = spi_flash_cmd_wait_ready(flash,
|
||||
SPI_FLASH_PAGE_ERASE_TIMEOUT_MS);
|
||||
if (ret)
|
||||
goto out;
|
||||
}
|
||||
|
@@ -179,7 +179,7 @@ sst_byte_write(const struct spi_flash *flash, u32 offset, const void *buf)
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
return spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT);
|
||||
return spi_flash_cmd_wait_ready(flash, SPI_FLASH_PROG_TIMEOUT_MS);
|
||||
}
|
||||
|
||||
static int sst_write_256(const struct spi_flash *flash, u32 offset, size_t len,
|
||||
@@ -239,7 +239,8 @@ static int sst_write_256(const struct spi_flash *flash, u32 offset, size_t len,
|
||||
break;
|
||||
}
|
||||
|
||||
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)
|
||||
break;
|
||||
|
||||
@@ -294,7 +295,8 @@ static int sst_write_ai(const struct spi_flash *flash, u32 offset, size_t len,
|
||||
break;
|
||||
}
|
||||
|
||||
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)
|
||||
break;
|
||||
|
||||
|
@@ -331,7 +331,8 @@ static int stmicro_write(const struct spi_flash *flash,
|
||||
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;
|
||||
|
||||
|
@@ -326,7 +326,8 @@ static int winbond_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;
|
||||
|
||||
|
Reference in New Issue
Block a user