From: <zw...@ma...> - 2009-06-09 04:23:24
|
Author: zwelch Date: 2009-06-09 04:23:16 +0200 (Tue, 09 Jun 2009) New Revision: 2140 Modified: trunk/src/jtag/jtag.c Log: Allow jtag_tap_add to be called from other JTAG code modules. Modified: trunk/src/jtag/jtag.c =================================================================== --- trunk/src/jtag/jtag.c 2009-06-09 02:23:03 UTC (rev 2139) +++ trunk/src/jtag/jtag.c 2009-06-09 02:23:16 UTC (rev 2140) @@ -269,7 +269,7 @@ } /// Append a new TAP to the chain of all taps. -static void jtag_tap_add(struct jtag_tap_s *t) +void jtag_tap_add(struct jtag_tap_s *t) { t->abs_chain_position = jtag_num_taps++; |