mips: fix warning

Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
__archive__
Øyvind Harboe 2010-03-17 21:34:43 +01:00
parent cc197c8086
commit 0529431fe7
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ int mips_ejtag_drscan_8(struct mips_ejtag *ejtag_info, uint32_t *data)
if (tap == NULL)
return ERROR_FAIL;
struct scan_field field;
uint8_t t[4], r[4];
uint8_t t[4] = {0, 0, 0, 0}, r[4];
int retval;
field.num_bits = 8;