aboutsummaryrefslogtreecommitdiff
path: root/src/flash/nor/faux.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/faux.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/faux.c')
-rw-r--r--src/flash/nor/faux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/nor/faux.c b/src/flash/nor/faux.c
index d68940f..49b6dcc 100644
--- a/src/flash/nor/faux.c
+++ b/src/flash/nor/faux.c
@@ -113,7 +113,7 @@ static const struct command_registration faux_command_handlers[] = {
COMMAND_REGISTRATION_DONE
};
-struct flash_driver faux_flash = {
+const struct flash_driver faux_flash = {
.name = "faux",
.commands = faux_command_handlers,
.flash_bank_command = faux_flash_bank_command,