|
From: <zw...@ma...> - 2009-06-09 06:54:18
|
Author: zwelch
Date: 2009-06-09 06:54:09 +0200 (Tue, 09 Jun 2009)
New Revision: 2152
Modified:
trunk/src/jtag/core.c
trunk/src/target/arm11_dbgtap.c
Log:
Replace 'jtag.c' with 'core.c' in code comments.
Modified: trunk/src/jtag/core.c
===================================================================
--- trunk/src/jtag/core.c 2009-06-09 04:39:54 UTC (rev 2151)
+++ trunk/src/jtag/core.c 2009-06-09 04:54:09 UTC (rev 2152)
@@ -46,7 +46,7 @@
static void jtag_add_scan_check(void (*jtag_add_scan)(int in_num_fields, const scan_field_t *in_fields, tap_state_t state),
int in_num_fields, scan_field_t *in_fields, tap_state_t state);
-/* note that this is not marked as static as it must be available from outside jtag.c for those
+/* note that this is not marked as static as it must be available from outside core.c for those
that implement the jtag_xxx() minidriver layer
*/
int jtag_error=ERROR_OK;
Modified: trunk/src/target/arm11_dbgtap.c
===================================================================
--- trunk/src/target/arm11_dbgtap.c 2009-06-09 04:39:54 UTC (rev 2151)
+++ trunk/src/target/arm11_dbgtap.c 2009-06-09 04:54:09 UTC (rev 2152)
@@ -124,7 +124,7 @@
*/
static void arm11_in_handler_SCAN_N(u8 *in_value)
{
- /** \todo TODO: clarify why this isnt properly masked in jtag.c jtag_read_buffer() */
+ /** \todo TODO: clarify why this isnt properly masked in core.c jtag_read_buffer() */
u8 v = *in_value & 0x1F;
if (v != 0x10)
|