From: Shanker Donthineni Date: Mon, 27 Jun 2016 20:33:38 +0000 (-0500) Subject: arm/gic-v3: Remove an unused macro MAX_RDIST_COUNT X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~765 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f4b9488eaa232d5e167e0124c10faa5b73a2c800;p=xen.git arm/gic-v3: Remove an unused macro MAX_RDIST_COUNT The macro MAX_RDIST_COUNT is not being used after converting code to handle number of redistributor dynamically. So remove it from header file and the two other panic() messages that are not valid anymore. Signed-off-by: Shanker Donthineni Acked-by: Julien Grall Acked-by: Stefano Stabellini --- diff --git a/xen/arch/arm/gic-v3.c b/xen/arch/arm/gic-v3.c index fffde469b5..cbda066f50 100644 --- a/xen/arch/arm/gic-v3.c +++ b/xen/arch/arm/gic-v3.c @@ -1195,10 +1195,6 @@ static void __init gicv3_dt_init(void) &gicv3.rdist_count) ) gicv3.rdist_count = 1; - if ( gicv3.rdist_count > MAX_RDIST_COUNT ) - panic("GICv3: Number of redistributor regions is more than" - "%d (Increase MAX_RDIST_COUNT!!)\n", MAX_RDIST_COUNT); - rdist_regs = xzalloc_array(struct rdist_region, gicv3.rdist_count); if ( !rdist_regs ) panic("GICv3: Failed to allocate memory for rdist regions\n"); @@ -1484,10 +1480,6 @@ static void __init gicv3_acpi_init(void) gicr_table = false; } - if ( count > MAX_RDIST_COUNT ) - panic("GICv3: Number of redistributor regions is more than" - "%d (Increase MAX_RDIST_COUNT!!)\n", MAX_RDIST_COUNT); - rdist_regs = xzalloc_array(struct rdist_region, count); if ( !rdist_regs ) panic("GICv3: Failed to allocate memory for rdist regions\n"); diff --git a/xen/include/asm-arm/gic.h b/xen/include/asm-arm/gic.h index f42b77c6a4..b073c5395b 100644 --- a/xen/include/asm-arm/gic.h +++ b/xen/include/asm-arm/gic.h @@ -20,7 +20,6 @@ #define NR_GIC_LOCAL_IRQS NR_LOCAL_IRQS #define NR_GIC_SGI 16 -#define MAX_RDIST_COUNT 4 #define GICD_CTLR (0x000) #define GICD_TYPER (0x004)