made two functions into static, since they are not required by anything external
return retval;
}
-int switch_tap(struct target * target, struct jtag_tap * master_tap,struct jtag_tap * core_tap){
+static int switch_tap(struct target * target, struct jtag_tap * master_tap,struct jtag_tap * core_tap){
int retval = ERROR_OK;
uint32_t instr;
uint32_t ir_out;//not used, just to make jtag happy.
}
// Reset state machine
-int reset_jtag(void){
+static int reset_jtag(void){
int retval;
tap_state_t states[2];
const char *cp = "RESET";