Replace DA9063_NUM_IRQ macro which is not used anywhere with plain ARRAY_SIZE().
Signed-off-by: Marek Vasut <[email protected]> Cc: Geert Uytterhoeven <[email protected]> Cc: Lee Jones <[email protected]> Cc: Mark Brown <[email protected]> Cc: Steve Twiss <[email protected]> Cc: Wolfram Sang <[email protected]> Cc: [email protected] Reviewed-by: Geert Uytterhoeven <[email protected]> Acked-for-MFD-by: Lee Jones <[email protected]> --- V4: New patch V5: Remove DA9063_IRQ_BASE_OFFSET V6: No change --- drivers/mfd/da9063-irq.c | 2 +- include/linux/mfd/da9063/core.h | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers/mfd/da9063-irq.c b/drivers/mfd/da9063-irq.c index 044bd867f540..579947f83486 100644 --- a/drivers/mfd/da9063-irq.c +++ b/drivers/mfd/da9063-irq.c @@ -94,7 +94,7 @@ static const struct regmap_irq da9063_irqs[] = { static const struct regmap_irq_chip da9063_irq_chip = { .name = "da9063-irq", .irqs = da9063_irqs, - .num_irqs = DA9063_NUM_IRQ, + .num_irqs = ARRAY_SIZE(da9063_irqs), .num_regs = 4, .status_base = DA9063_REG_EVENT_A, .mask_base = DA9063_REG_IRQ_MASK_A, diff --git a/include/linux/mfd/da9063/core.h b/include/linux/mfd/da9063/core.h index 8e6684d884e0..260cd5834861 100644 --- a/include/linux/mfd/da9063/core.h +++ b/include/linux/mfd/da9063/core.h @@ -72,9 +72,6 @@ enum da9063_irqs { DA9063_IRQ_GPI15, }; -#define DA9063_IRQ_BASE_OFFSET 0 -#define DA9063_NUM_IRQ (DA9063_IRQ_GPI15 + 1 - DA9063_IRQ_BASE_OFFSET) - struct da9063 { /* Device */ struct device *dev; -- 2.16.2

