irqchip/ti-sci-inta: Remove dead code in ti_sci_inta_set_type()
authorTiezhu Yang <yangtiezhu@loongson.cn>
Sat, 6 Jun 2020 09:50:15 +0000 (17:50 +0800)
committerMarc Zyngier <maz@kernel.org>
Sat, 27 Jun 2020 10:54:21 +0000 (11:54 +0100)
In the function ti_sci_inta_set_type(), the statement "return -EINVAL;"
out of switch case is dead code, remove it.

Fixes: 9f1463b86c13 ("irqchip/ti-sci-inta: Add support for Interrupt Aggregator driver")
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
Link: https://lore.kernel.org/r/1591437017-5295-1-git-send-email-yangtiezhu@loongson.cn
drivers/irqchip/irq-ti-sci-inta.c

index 7e3ebf6..c20c9f7 100644 (file)
@@ -433,8 +433,6 @@ static int ti_sci_inta_set_type(struct irq_data *data, unsigned int type)
        default:
                return -EINVAL;
        }
-
-       return -EINVAL;
 }
 
 static struct irq_chip ti_sci_inta_irq_chip = {