aboutsummaryrefslogtreecommitdiff
path: root/src/flash/nor/mrvlqspi.c
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2020-10-28 23:27:02 +0100
committerAntonio Borneo <borneo.antonio@gmail.com>2020-11-04 17:39:05 +0000
commit21bc36c4d7c813983f7ccf3ae958d96198867136 (patch)
tree0234c2cca7b688c20f4bf5f12321593a5952afe5 /src/flash/nor/mrvlqspi.c
parent5bb0f6befb3c3f06903cee93f14bdd917abf21e7 (diff)
downloadriscv-openocd-21bc36c4d7c813983f7ccf3ae958d96198867136.zip
riscv-openocd-21bc36c4d7c813983f7ccf3ae958d96198867136.tar.gz
riscv-openocd-21bc36c4d7c813983f7ccf3ae958d96198867136.tar.bz2
flash: declare local symbols as static
Functions and variables that are not used outside the file should be declared as static. Change-Id: I52d46ed6d4c9b98a7152eb23274c836416f409a3 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5893 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Diffstat (limited to 'src/flash/nor/mrvlqspi.c')
-rw-r--r--src/flash/nor/mrvlqspi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/flash/nor/mrvlqspi.c b/src/flash/nor/mrvlqspi.c
index 3293e61..3f5ce2c 100644
--- a/src/flash/nor/mrvlqspi.c
+++ b/src/flash/nor/mrvlqspi.c
@@ -761,7 +761,7 @@ static int mrvlqspi_flash_write(struct flash_bank *bank, const uint8_t *buffer,
return retval;
}
-int mrvlqspi_flash_read(struct flash_bank *bank, uint8_t *buffer,
+static int mrvlqspi_flash_read(struct flash_bank *bank, uint8_t *buffer,
uint32_t offset, uint32_t count)
{
struct target *target = bank->target;
@@ -914,7 +914,7 @@ static int mrvlqspi_flash_erase_check(struct flash_bank *bank)
return ERROR_OK;
}
-int mrvlqspi_get_info(struct flash_bank *bank, char *buf, int buf_size)
+static int mrvlqspi_get_info(struct flash_bank *bank, char *buf, int buf_size)
{
struct mrvlqspi_flash_bank *mrvlqspi_info = bank->driver_priv;