aboutsummaryrefslogtreecommitdiff
path: root/src/flash/nor/lpc288x.c
diff options
context:
space:
mode:
authorChristopher Head <chead@zaber.com>2018-12-13 11:53:59 -0800
committerMatthias Welwarsky <matthias@welwarsky.de>2019-03-27 08:57:14 +0000
commita7479fa89def9d8b1854d629dfdaa0ba17132617 (patch)
tree1f9f1f957ad93342d2fa46f854419bb3a9f2697d /src/flash/nor/lpc288x.c
parent84a2cab596a0621fab3424c72b43280ccdc240c2 (diff)
downloadriscv-openocd-a7479fa89def9d8b1854d629dfdaa0ba17132617.zip
riscv-openocd-a7479fa89def9d8b1854d629dfdaa0ba17132617.tar.gz
riscv-openocd-a7479fa89def9d8b1854d629dfdaa0ba17132617.tar.bz2
Constify struct flash_driver instances
Instances of struct flash_driver are never written to at runtime. For a small amount of memory saving and also robustness (fewer things for stray pointer writes to hit), mark them const. Change-Id: Iadbbbc2fac0976d892699200000c5f02856729f3 Signed-off-by: Christopher Head <chead@zaber.com> Reviewed-on: http://openocd.zylin.com/4803 Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Tested-by: jenkins Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de>
Diffstat (limited to 'src/flash/nor/lpc288x.c')
-rw-r--r--src/flash/nor/lpc288x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/lpc288x.c b/src/flash/nor/lpc288x.c
index afa8d79..8852c85 100644
--- a/src/flash/nor/lpc288x.c
+++ b/src/flash/nor/lpc288x.c
@@ -412,7 +412,7 @@ static int lpc288x_protect(struct flash_bank *bank, int set, int first, int last
return ERROR_OK;
}
-struct flash_driver lpc288x_flash = {
+const struct flash_driver lpc288x_flash = {
.name = "lpc288x",
.flash_bank_command = lpc288x_flash_bank_command,
.erase = lpc288x_erase,