qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

hw/intc/gicv3: Remove useless parenthesis around DIV_ROUND_UP macro

Patch created mechanically by rerunning:

$ spatch --sp-file scripts/coccinelle/round.cocci \
--macro-file scripts/cocci-macro-file.h \
--dir . --in-place

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20180705155811.20366-8-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>

authored by

Philippe Mathieu-Daudé and committed by
Laurent Vivier
3666331a 66175626

+1 -1
+1 -1
include/hw/intc/arm_gicv3_common.h
··· 62 62 * avoids bugs where we forget to subtract GIC_INTERNAL from an 63 63 * interrupt number. 64 64 */ 65 - #define GICV3_BMP_SIZE (DIV_ROUND_UP(GICV3_MAXIRQ, 32)) 65 + #define GICV3_BMP_SIZE DIV_ROUND_UP(GICV3_MAXIRQ, 32) 66 66 67 67 #define GIC_DECLARE_BITMAP(name) \ 68 68 uint32_t name[GICV3_BMP_SIZE]