From a359eaa59857079678a2fa5ff0e4c0894de4ee1d Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Mon, 15 Feb 2016 13:44:19 +0100 Subject: microblaze: Remove !OF_CONTROL code for timer and interrupt OF_CONTROL is enabled by default that's why this is dead code. Signed-off-by: Michal Simek --- arch/microblaze/cpu/interrupts.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'arch/microblaze/cpu/interrupts.c') diff --git a/arch/microblaze/cpu/interrupts.c b/arch/microblaze/cpu/interrupts.c index e5d8894f544..010ca4a02c4 100644 --- a/arch/microblaze/cpu/interrupts.c +++ b/arch/microblaze/cpu/interrupts.c @@ -115,8 +115,6 @@ static void intc_init(void) int interrupt_init(void) { int i; - -#ifdef CONFIG_OF_CONTROL const void *blob = gd->fdt_blob; int node = 0; @@ -136,12 +134,7 @@ int interrupt_init(void) } else { return node; } -#else -#if defined(CONFIG_SYS_INTC_0_ADDR) && defined(CONFIG_SYS_INTC_0_NUM) - intc = (microblaze_intc_t *)CONFIG_SYS_INTC_0_ADDR; - irq_no = CONFIG_SYS_INTC_0_NUM; -#endif -#endif + if (irq_no) { vecs = calloc(1, sizeof(struct irq_action) * irq_no); if (vecs == NULL) { -- cgit v1.2.3