]> git.sur5r.net Git - openocd/commitdiff
Encapsulate the jtag_event_callback list; add helper functions if needed.
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Tue, 9 Jun 2009 08:40:02 +0000 (08:40 +0000)
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>
Tue, 9 Jun 2009 08:40:02 +0000 (08:40 +0000)
git-svn-id: svn://svn.berlios.de/openocd/trunk@2158 b42882b7-edfa-0310-969c-e2dbd0fdcd60

src/jtag/core.c
src/jtag/jtag.h

index 45ece3c4cf017891f191ad157d871d57fe488848..5edcce22c12b09909cd7a43f50b7b92470e54a70 100644 (file)
@@ -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;
index 40639dce63fee70788028d4a4e213bb555e1f795..fd4953ec04683f17683976dc4e54b3ebdc9bae37 100644 (file)
@@ -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;