]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
genirq: Fix indentation in remove_irq()
authorChristoph Hellwig <hch@lst.de>
Thu, 13 Apr 2017 07:06:40 +0000 (09:06 +0200)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 18 Apr 2017 18:39:20 +0000 (13:39 -0500)
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
kernel/irq/manage.c

index a4afe5cc5af1828a49f1005825eadc880a727088..391cb738b2db6e3f2d31eefe64d33edae9d06bda 100644 (file)
@@ -1557,7 +1557,7 @@ void remove_irq(unsigned int irq, struct irqaction *act)
        struct irq_desc *desc = irq_to_desc(irq);
 
        if (desc && !WARN_ON(irq_settings_is_per_cpu_devid(desc)))
-           __free_irq(irq, act->dev_id);
+               __free_irq(irq, act->dev_id);
 }
 EXPORT_SYMBOL_GPL(remove_irq);