diff options
author | 2015-05-24 06:07:44 -0500 | |
---|---|---|
committer | 2015-05-24 06:07:44 -0500 | |
commit | 9bfa4397575fc3059bb4615901dba3183d894a3f (patch) | |
tree | e44f31d4bca110a9f4bcc54398e4f95c6c0b5354 /src/lib/util/jedparse.c | |
parent | c3573f92018406306b2a2df6bcfbd0a07cf77982 (diff) |
Simple LTO warning fixes (Part1) (nw)
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; |