This website works better with JavaScript.
Home
Help
Register
Sign In
jim
/
openocd
Watch
0
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
26
Wiki
Activity
Browse Source
mips: fix warning
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
tags/v0.5.0-rc1
Øyvind Harboe
12 years ago
parent
cc197c8086
commit
0529431fe7
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/target/mips_ejtag.c
+ 1
- 1
src/target/mips_ejtag.c
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;
Write
Preview
Loading…
Cancel
Save