hw/mips: Declare all length properties as unsigned
commit10997f2d1ded7616d33276cdc2a3e37b9ce2154d
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 2 Feb 2023 09:46:45 +0000 (2 10:46 +0100)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Tue, 7 Mar 2023 23:37:48 +0000 (8 00:37 +0100)
tree7d4089cdff9fb0e134f36e723fa050d455ccaba1
parentdcebb36eb0a8dea4e134b6fed0919aff55397930
hw/mips: Declare all length properties as unsigned

Some length properties are signed, other unsigned:

  hw/mips/cps.c:183:    DEFINE_PROP_UINT32("num-vp", MIPSCPSState, num_vp, 1),
  hw/mips/cps.c:184:    DEFINE_PROP_UINT32("num-irq", MIPSCPSState, num_irq, 256),
  hw/misc/mips_cmgcr.c:215:    DEFINE_PROP_INT32("num-vp", MIPSGCRState, num_vps, 1),
  hw/misc/mips_cpc.c:167:    DEFINE_PROP_UINT32("num-vp", MIPSCPCState, num_vp, 0x1),
  hw/misc/mips_itu.c:552:    DEFINE_PROP_INT32("num-fifo", MIPSITUState, num_fifo,
  hw/misc/mips_itu.c:554:    DEFINE_PROP_INT32("num-semaphores", MIPSITUState,

Since negative values are not used (the minimum is '0'),
unify by declaring all properties as unsigned.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230203113650.78146-9-philmd@linaro.org>
hw/intc/mips_gic.c
hw/mips/boston.c
hw/mips/cps.c
hw/mips/malta.c
hw/misc/mips_cmgcr.c
hw/misc/mips_itu.c
include/hw/intc/mips_gic.h
include/hw/misc/mips_cmgcr.h
include/hw/misc/mips_itu.h