make std_wgl_map static

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@913 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Arnim Läuger 17 years ago
parent ac10f84036
commit 4ad3f1ae26

@ -1,6 +1,7 @@
2008-01-06 Arnim Laeuger <arniml@users.sourceforge.net>
* src/tap/cable/wiggler.c (wiggler_connect): enable bit<->pin mapping from parameter string
* src/tap/cable/wiggler.c: make std_wgl_map static
2007-12-31 Arnim Laeuger <arniml@users.sourceforge.net>

@ -66,12 +66,13 @@
/* macros used to stringify the defines above */
#define xstr(s) str(s)
#define str(s) #s
const char *std_wgl_map = xstr(TDO) ","
xstr(nTRST) ","
xstr(TDI) ","
xstr(TCK) ","
xstr(TMS) ","
"#" xstr(nSRESET);
static const
char *std_wgl_map = xstr(TDO) ","
xstr(nTRST) ","
xstr(TDI) ","
xstr(TCK) ","
xstr(TMS) ","
"#" xstr(nSRESET);
/* private parameters of this cable driver */

Loading…
Cancel
Save