diff options
author | Antonio Borneo <borneo.antonio@gmail.com> | 2010-04-10 17:03:02 +0800 |
---|---|---|
committer | Antonio Borneo <borneo.antonio@gmail.com> | 2010-04-10 17:03:02 +0800 |
commit | ec1c90e3cd53446939b4655f55166bff6b3d39f4 (patch) | |
tree | dba05bc5e30e03973fe16229452b8efa407df863 | |
parent | 8ffdefcc59ee0a8d305ac5a9f28b38ad89dea7c5 (diff) | |
download | openocd_libswd-ec1c90e3cd53446939b4655f55166bff6b3d39f4.tar.gz openocd_libswd-ec1c90e3cd53446939b4655f55166bff6b3d39f4.tar.bz2 openocd_libswd-ec1c90e3cd53446939b4655f55166bff6b3d39f4.tar.xz openocd_libswd-ec1c90e3cd53446939b4655f55166bff6b3d39f4.zip |
ADI_V5_JTAG: review scope of data
Add "static" qualifier to private data.
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
-rw-r--r-- | src/target/adi_v5_jtag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/adi_v5_jtag.c b/src/target/adi_v5_jtag.c index 0d795fb4..04c6ae7b 100644 --- a/src/target/adi_v5_jtag.c +++ b/src/target/adi_v5_jtag.c @@ -429,7 +429,7 @@ const struct dap_ops jtag_dp_ops = { }; -const uint8_t swd2jtag_bitseq[] = { +static const uint8_t swd2jtag_bitseq[] = { /* More than 50 TCK/SWCLK cycles with TMS/SWDIO high, * putting both JTAG and SWD logic into reset state. */ |