aboutsummaryrefslogtreecommitdiff
path: root/src/target/dsp563xx.c
diff options
context:
space:
mode:
authorJim Norris <u17263@att.net>2013-06-11 20:42:08 -0500
committerSpencer Oliver <spen@spen-soft.co.uk>2013-06-12 14:41:04 +0000
commit6ff1dc92fd9d06171b7c7cdf39238e83ee6637ac (patch)
tree2d637030fce6cddb71a5299e10ae83425869037c /src/target/dsp563xx.c
parent6be2a55bde5531de9897fd844c6db13e49213ae8 (diff)
downloadriscv-openocd-6ff1dc92fd9d06171b7c7cdf39238e83ee6637ac.zip
riscv-openocd-6ff1dc92fd9d06171b7c7cdf39238e83ee6637ac.tar.gz
riscv-openocd-6ff1dc92fd9d06171b7c7cdf39238e83ee6637ac.tar.bz2
Change variable scope.
Change scope of the variable gdb_reg_list_idx from global to module. Change-Id: Ib8273c0769c11c1d5a338e4711efbddb8e8a0243 Signed-off-by: Jim Norris <u17263@att.net> Reviewed-on: http://openocd.zylin.com/1441 Tested-by: jenkins Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
Diffstat (limited to 'src/target/dsp563xx.c')
-rw-r--r--src/target/dsp563xx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/dsp563xx.c b/src/target/dsp563xx.c
index a121e8a..4dfb66e 100644
--- a/src/target/dsp563xx.c
+++ b/src/target/dsp563xx.c
@@ -304,7 +304,7 @@ enum memory_type {
((s & 1) << 16) | ((w & 1) << 15) | ((d & 0x3f) << 8) | (p & 0x3f))
/* the gdb register list is send in this order */
-uint8_t gdb_reg_list_idx[] = {
+static uint8_t gdb_reg_list_idx[] = {
DSP563XX_REG_IDX_X1, DSP563XX_REG_IDX_X0, DSP563XX_REG_IDX_Y1, DSP563XX_REG_IDX_Y0,
DSP563XX_REG_IDX_A2, DSP563XX_REG_IDX_A1, DSP563XX_REG_IDX_A0, DSP563XX_REG_IDX_B2,
DSP563XX_REG_IDX_B1, DSP563XX_REG_IDX_B0, DSP563XX_REG_IDX_PC, DSP563XX_REG_IDX_SR,