jtag.h whitespace/comment cleanup

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
This commit is contained in:
David Brownell 2010-01-14 14:38:24 -08:00
parent 8e1b5c3138
commit 0f7cea2847
1 changed files with 8 additions and 9 deletions

View File

@ -563,23 +563,22 @@ void jtag_add_reset(int req_tlr_or_trst, int srst);
* Set a global variable to \a state if \a state != TAP_INVALID. * Set a global variable to \a state if \a state != TAP_INVALID.
* *
* Return the value of the global variable. * Return the value of the global variable.
* */
**/
tap_state_t jtag_set_end_state(tap_state_t state); tap_state_t jtag_set_end_state(tap_state_t state);
/** /**
* Function jtag_get_end_state * Function jtag_get_end_state
* *
* Return the value of the global variable for end state * Return the value of the global variable for end state
* */
**/
tap_state_t jtag_get_end_state(void); tap_state_t jtag_get_end_state(void);
void jtag_add_sleep(uint32_t us); void jtag_add_sleep(uint32_t us);
/** /**
* Function jtag_add_stable_clocks * Function jtag_add_clocks
* first checks that the state in which the clocks are to be issued is * first checks that the state in which the clocks are to be issued is
* stable, then queues up clock_count clocks for transmission. * stable, then queues up num_cycles clocks for transmission.
*/ */
void jtag_add_clocks(int num_cycles); void jtag_add_clocks(int num_cycles);