From d9a84d15f23a38cce755c558c5b6227eb0ec8d02 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 27 Nov 2021 12:14:28 -0500 Subject: sim: hw: mark hw_descriptors const --- sim/common/Make-common.in | 2 +- sim/common/hw-base.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'sim') diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 7f24024..9be682e 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -428,7 +428,7 @@ stamp-hw: Makefile.in $(srccom)/Make-common.in $(config.status) Makefile sim_hw="$(SIM_HW_DEVICES)" ; \ echo "/* generated by Makefile */" ; \ printf "extern const struct hw_descriptor dv_%s_descriptor[];\n" $$sim_hw ; \ - echo "const struct hw_descriptor *hw_descriptors[] = {" ; \ + echo "const struct hw_descriptor * const hw_descriptors[] = {" ; \ printf " dv_%s_descriptor,\n" $$sim_hw ; \ echo " NULL," ; \ echo "};" \ diff --git a/sim/common/hw-base.c b/sim/common/hw-base.c index af4cc50..dee9359 100644 --- a/sim/common/hw-base.c +++ b/sim/common/hw-base.c @@ -385,7 +385,7 @@ hw_create (struct sim_state *sd, /* locate a descriptor */ { - const struct hw_descriptor **table; + const struct hw_descriptor * const *table; for (table = hw_descriptors; *table != NULL; table++) -- cgit v1.1