diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-05-23 08:15:46 +0200 |
|---|---|---|
| committer | Daniel Henrique Barboza <danielhb413@gmail.com> | 2023-06-10 10:19:24 -0300 |
| commit | 8e67403a2cdde2dd43b43683f4478f3c8ed07cf4 (patch) | |
| tree | d7d3f0cec8889e15f839e07a669f3b3da01a2e63 | |
| parent | 17dd1354c1d1aba9caf4af01e11aa7dbe128474f (diff) | |
| download | focaccia-qemu-8e67403a2cdde2dd43b43683f4478f3c8ed07cf4.tar.gz focaccia-qemu-8e67403a2cdde2dd43b43683f4478f3c8ed07cf4.zip | |
hw/ppc/openpic: Do not open-code ROUND_UP() macro
While reviewing, the ROUND_UP() macro is easier to figure out. Besides, the comment confirms we want to round up here. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Message-Id: <20230523061546.49031-1-philmd@linaro.org> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
| -rw-r--r-- | include/hw/ppc/openpic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/ppc/openpic.h b/include/hw/ppc/openpic.h index ebdaf8a493..bae8dafe16 100644 --- a/include/hw/ppc/openpic.h +++ b/include/hw/ppc/openpic.h @@ -55,7 +55,7 @@ typedef enum IRQType { * Round up to the nearest 64 IRQs so that the queue length * won't change when moving between 32 and 64 bit hosts. */ -#define IRQQUEUE_SIZE_BITS ((OPENPIC_MAX_IRQ + 63) & ~63) +#define IRQQUEUE_SIZE_BITS ROUND_UP(OPENPIC_MAX_IRQ, 64) typedef struct IRQQueue { unsigned long *queue; |