From 4ad3f1ae264d8f67fb36f6a8f1868fb041211667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnim=20L=C3=A4uger?= Date: Sun, 6 Jan 2008 22:02:51 +0000 Subject: [PATCH] make std_wgl_map static git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@913 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- jtag/ChangeLog | 1 + jtag/src/tap/cable/wiggler.c | 13 +++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/jtag/ChangeLog b/jtag/ChangeLog index 8cc9019a..028186b5 100644 --- a/jtag/ChangeLog +++ b/jtag/ChangeLog @@ -1,6 +1,7 @@ 2008-01-06 Arnim Laeuger * 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 diff --git a/jtag/src/tap/cable/wiggler.c b/jtag/src/tap/cable/wiggler.c index ea785fdc..8c9d1058 100644 --- a/jtag/src/tap/cable/wiggler.c +++ b/jtag/src/tap/cable/wiggler.c @@ -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 */