mips: fix warning
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
parent
cc197c8086
commit
0529431fe7
|
@ -135,7 +135,7 @@ int mips_ejtag_drscan_8(struct mips_ejtag *ejtag_info, uint32_t *data)
|
||||||
if (tap == NULL)
|
if (tap == NULL)
|
||||||
return ERROR_FAIL;
|
return ERROR_FAIL;
|
||||||
struct scan_field field;
|
struct scan_field field;
|
||||||
uint8_t t[4], r[4];
|
uint8_t t[4] = {0, 0, 0, 0}, r[4];
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
field.num_bits = 8;
|
field.num_bits = 8;
|
||||||
|
|
Loading…
Reference in New Issue