less warnings
git-svn-id: svn://svn.berlios.de/openocd/trunk@2288 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
8f87f8945e
commit
01823f5e0b
|
@ -36,8 +36,6 @@
|
|||
|
||||
/* low level command set
|
||||
*/
|
||||
int zy1000_read(void);
|
||||
static void zy1000_write(int tck, int tms, int tdi);
|
||||
void zy1000_reset(int trst, int srst);
|
||||
|
||||
|
||||
|
@ -126,18 +124,6 @@ jtag_interface_t zy1000_interface =
|
|||
.srst_asserted = zy1000_srst_asserted,
|
||||
};
|
||||
|
||||
static void zy1000_write(int tck, int tms, int tdi)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
int zy1000_read(void)
|
||||
{
|
||||
return -1;
|
||||
}
|
||||
|
||||
extern bool readSRST(void);
|
||||
|
||||
void zy1000_reset(int trst, int srst)
|
||||
{
|
||||
LOG_DEBUG("zy1000 trst=%d, srst=%d", trst, srst);
|
||||
|
@ -426,7 +412,7 @@ static void shiftValueInnerFlip(const tap_state_t state, const tap_state_t endSt
|
|||
|
||||
extern int jtag_check_value(uint8_t *captured, void *priv);
|
||||
|
||||
static __inline void scanFields(int num_fields, scan_field_t *fields, tap_state_t shiftState, tap_state_t end_state)
|
||||
static __inline void scanFields(int num_fields, const scan_field_t *fields, tap_state_t shiftState, tap_state_t end_state)
|
||||
{
|
||||
int i;
|
||||
int j;
|
||||
|
@ -436,8 +422,6 @@ static __inline void scanFields(int num_fields, scan_field_t *fields, tap_state_
|
|||
{
|
||||
cyg_uint32 value;
|
||||
|
||||
static uint8_t *in_buff=NULL; /* pointer to buffer for scanned data */
|
||||
static int in_buff_size=0;
|
||||
uint8_t *inBuffer=NULL;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue