diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-09 08:40:02 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-09 08:40:02 +0000 |
commit | bcad121d2ba3fffebb9b1cd126d3225aeb9711b8 (patch) | |
tree | 0c6a866fedb96566b75dcd313432992d5c7bdda9 | |
parent | 175867ea323137285a5389fc6a65105c06853651 (diff) | |
download | riscv-openocd-bcad121d2ba3fffebb9b1cd126d3225aeb9711b8.zip riscv-openocd-bcad121d2ba3fffebb9b1cd126d3225aeb9711b8.tar.gz riscv-openocd-bcad121d2ba3fffebb9b1cd126d3225aeb9711b8.tar.bz2 |
Encapsulate the jtag_event_callback list; add helper functions if needed.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2158 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | src/jtag/core.c | 2 | ||||
-rw-r--r-- | src/jtag/jtag.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/jtag/core.c b/src/jtag/core.c index 45ece3c..5edcce2 100644 --- a/src/jtag/core.c +++ b/src/jtag/core.c @@ -88,7 +88,7 @@ static int jtag_nsrst_delay = 0; /* default to no nSRST delay */ static int jtag_ntrst_delay = 0; /* default to no nTRST delay */ /* callbacks to inform high-level handlers about JTAG state changes */ -jtag_event_callback_t *jtag_event_callbacks; +static jtag_event_callback_t *jtag_event_callbacks; /* speed in kHz*/ static int speed_khz = 0; diff --git a/src/jtag/jtag.h b/src/jtag/jtag.h index 40639dc..fd4953e 100644 --- a/src/jtag/jtag.h +++ b/src/jtag/jtag.h @@ -255,8 +255,6 @@ typedef struct jtag_event_callback_s struct jtag_event_callback_s* next; } jtag_event_callback_t; -extern jtag_event_callback_t* jtag_event_callbacks; - extern int jtag_speed; extern int jtag_speed_post_reset; |