diff options
author | 2017-03-06 12:08:53 +1100 | |
---|---|---|
committer | 2017-03-06 12:08:53 +1100 | |
commit | bad5b28049e5e0562a8ad91797fb77953a53fa20 (patch) | |
tree | d58515b0213f4d1ce2d4012dd19070dc629f5c3d /treesource.c | |
parent | 672ac09ea04d998dfddfdef3070a8af8d480182b (diff) |
Fix assorted sparse warnings
This fixes a great many sparse warnings on the fdt and libfdt sources.
These are mostly due to incorrect mixing of endian annotated and native
integer types.
This includes fixing a couple of quasi-bugs where we had endian conversions
the wrong way around (this will have the right effect in practice, but is
certainly conceptually incorrect).
This doesn't make the whole tree sparse clean: there are many warnings in
bison and lex generated code, and there are a handful of other remaining
warnings that are (for now) more trouble than they're worth to fix (and
are not genuine bugs).
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'treesource.c')
-rw-r--r-- | treesource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/treesource.c b/treesource.c index 2bc963f..2461a3d 100644 --- a/treesource.c +++ b/treesource.c @@ -137,7 +137,7 @@ static void write_propval_string(FILE *f, struct data val) static void write_propval_cells(FILE *f, struct data val) { void *propend = val.val + val.len; - cell_t *cp = (cell_t *)val.val; + fdt32_t *cp = (fdt32_t *)val.val; struct marker *m = val.markers; fprintf(f, "<"); |