summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2016-04-14 00:39:32 +0100
committerAndre Przywara <andre.przywara@arm.com>2016-06-02 01:28:54 +0100
commit3497c6975963e1801f94aaa9b59c5b9ffeda753a (patch)
tree5daba1b8c1e0aa12c9a1837d8865ab6b6a2a5cf4
parentc243376d301924b5b3b03a1ba85de3119572d67f (diff)
drivers: arm_gic: remove GICv3 assertion
The generic ARM GIC setup code has an assertion about a valid GICv3 redistributor base address. Remove this to allow to setup GICv2s using the generic interface. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
-rw-r--r--drivers/arm/gic/arm_gic.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/arm/gic/arm_gic.c b/drivers/arm/gic/arm_gic.c
index 71272f4..c0d56e9 100644
--- a/drivers/arm/gic/arm_gic.c
+++ b/drivers/arm/gic/arm_gic.c
@@ -295,7 +295,6 @@ void arm_gic_init(unsigned int gicc_base,
{
assert(gicc_base);
assert(gicd_base);
- assert(gicr_base);
assert(!num_irqs || irq_sec_ptr);
g_gicc_base = gicc_base;
g_gicd_base = gicd_base;