Report from Sparse: target-moxie/mmu.h:9:12: error: dubious one-bit signed bitfield target-moxie/mmu.h:10:12: error: dubious one-bit signed bitfield target-moxie/mmu.h:11:12: error: dubious one-bit signed bitfield target-moxie/mmu.h:12:12: error: dubious one-bit signed bitfield target-moxie/mmu.h:13:12: error: dubious one-bit signed bitfield
Cc: Anthony Green <gr...@moxielogic.com> Signed-off-by: Stefan Weil <s...@weilnetz.de> --- target-moxie/mmu.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/target-moxie/mmu.h b/target-moxie/mmu.h index e01ffc2..abc7929 100644 --- a/target-moxie/mmu.h +++ b/target-moxie/mmu.h @@ -6,11 +6,11 @@ typedef struct { uint32_t phy; uint32_t pfn; - int g:1; - int v:1; - int k:1; - int w:1; - int e:1; + unsigned g:1; + unsigned v:1; + unsigned k:1; + unsigned w:1; + unsigned e:1; int cause_op; } MoxieMMUResult; -- 2.1.4