summaryrefslogtreecommitdiffstats
path: root/spi25.c
diff options
context:
space:
mode:
authorThomas Heijligen <thomas.heijligen@secunet.com>2022-09-19 23:46:58 +0200
committerThomas Heijligen <src@posteo.de>2022-12-14 10:54:36 +0000
commitd1e97db8a2fbb13cbe4b19795adb677746b371e8 (patch)
treed9fbf1a22d3fd0a7f40605ae2ef92f74549a3131 /spi25.c
parentcb99e8a68bd0e5c91a97ed2b4a5bf0731ff983a8 (diff)
downloadflashrom-d1e97db8a2fbb13cbe4b19795adb677746b371e8.tar.gz
flashrom-d1e97db8a2fbb13cbe4b19795adb677746b371e8.tar.bz2
flashrom-d1e97db8a2fbb13cbe4b19795adb677746b371e8.zip
spi25.c: Rename spi_get_erasefn_from_opcode to spi25_get_erasefn_from_opcode
This function works only with spi25 chips Change-Id: Ie054160b0fdd34bcb128285c6a047e3a3fa8be0c Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/67716 Reviewed-by: Thomas Heijligen <src@posteo.de> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'spi25.c')
-rw-r--r--spi25.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/spi25.c b/spi25.c
index cae6200cd..f54e4c8dd 100644
--- a/spi25.c
+++ b/spi25.c
@@ -621,7 +621,7 @@ int spi_block_erase_dc(struct flashctx *flash, unsigned int addr, unsigned int b
static const struct {
enum block_erase_func func;
uint8_t opcode;
-} function_opcode_list[] = {
+} spi25_function_opcode_list[] = {
{SPI_BLOCK_ERASE_20, 0x20},
{SPI_BLOCK_ERASE_21, 0x21},
{SPI_BLOCK_ERASE_50, 0x50},
@@ -639,12 +639,12 @@ static const struct {
{SPI_BLOCK_ERASE_DC, 0xdc},
};
-enum block_erase_func spi_get_erasefn_from_opcode(uint8_t opcode)
+enum block_erase_func spi25_get_erasefn_from_opcode(uint8_t opcode)
{
size_t i;
- for (i = 0; i < ARRAY_SIZE(function_opcode_list); i++) {
- if (function_opcode_list[i].opcode == opcode)
- return function_opcode_list[i].func;
+ for (i = 0; i < ARRAY_SIZE(spi25_function_opcode_list); i++) {
+ if (spi25_function_opcode_list[i].opcode == opcode)
+ return spi25_function_opcode_list[i].func;
}
msg_cinfo("%s: unknown erase opcode (0x%02x). Please report "
"this at flashrom@flashrom.org\n", __func__, opcode);