diff options
author | 2015-05-30 14:57:13 +0200 | |
---|---|---|
committer | 2015-05-30 14:57:13 +0200 | |
commit | d1d9dfc2d4be85cee8c8c990950d72ee6df78e5e (patch) | |
tree | 495d4e5a066ee13be131f08437732b3588d43a42 /src/lib/util/jedparse.c | |
parent | fe71f92dd24270ae7c5621166b096c665ca0e4f5 (diff) | |
parent | 51709eef04f9f0c6d621447c568e170927fa9472 (diff) |
Merge pull request #4 from mamedev/master
Sync to base master
Diffstat (limited to 'src/lib/util/jedparse.c')
-rw-r--r-- | src/lib/util/jedparse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util/jedparse.c b/src/lib/util/jedparse.c index 51cdfc8eba3..b8aa6d85418 100644 --- a/src/lib/util/jedparse.c +++ b/src/lib/util/jedparse.c @@ -36,7 +36,7 @@ TYPE DEFINITIONS ***************************************************************************/ -struct parse_info +struct jed_parse_info { UINT16 checksum; /* checksum value */ UINT32 explicit_numfuses; /* explicitly specified number of fuses */ @@ -117,7 +117,7 @@ static UINT32 suck_number(const UINT8 **psrc) process_field - process a single JEDEC field -------------------------------------------------*/ -static void process_field(jed_data *data, const UINT8 *cursrc, const UINT8 *srcend, parse_info *pinfo) +static void process_field(jed_data *data, const UINT8 *cursrc, const UINT8 *srcend, jed_parse_info *pinfo) { /* switch off of the field type */ switch (*cursrc) @@ -192,7 +192,7 @@ int jed_parse(const void *data, size_t length, jed_data *result) const UINT8 *cursrc = (const UINT8 *)data; const UINT8 *srcend = cursrc + length; const UINT8 *scan; - parse_info pinfo; + jed_parse_info pinfo; UINT16 checksum; int i; |