Skip to content

Commit 3ce8c70

Browse files
geertuMarc Zyngier
authored andcommitted
irqchip/renesas-rza1: Use semicolons instead of commas
This code works, but it is cleaner to use semicolons at the end of statements instead of commas. Extracted from a big anonymous patch by Julia Lawall <[email protected]>. Signed-off-by: Geert Uytterhoeven <[email protected]> Reviewed-by: Ulrich Hecht <[email protected]> Signed-off-by: Marc Zyngier <[email protected]> Link: https://lore.kernel.org/r/b1710bb6ea5faa7a7fe74404adb0beb951e0bf8c.1631699160.git.geert+renesas@glider.be
1 parent 280bef5 commit 3ce8c70

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

drivers/irqchip/irq-renesas-rza1.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -223,12 +223,12 @@ static int rza1_irqc_probe(struct platform_device *pdev)
223223
goto out_put_node;
224224
}
225225

226-
priv->chip.name = "rza1-irqc",
227-
priv->chip.irq_mask = irq_chip_mask_parent,
228-
priv->chip.irq_unmask = irq_chip_unmask_parent,
229-
priv->chip.irq_eoi = rza1_irqc_eoi,
230-
priv->chip.irq_retrigger = irq_chip_retrigger_hierarchy,
231-
priv->chip.irq_set_type = rza1_irqc_set_type,
226+
priv->chip.name = "rza1-irqc";
227+
priv->chip.irq_mask = irq_chip_mask_parent;
228+
priv->chip.irq_unmask = irq_chip_unmask_parent;
229+
priv->chip.irq_eoi = rza1_irqc_eoi;
230+
priv->chip.irq_retrigger = irq_chip_retrigger_hierarchy;
231+
priv->chip.irq_set_type = rza1_irqc_set_type;
232232
priv->chip.flags = IRQCHIP_MASK_ON_SUSPEND | IRQCHIP_SKIP_SET_WAKE;
233233

234234
priv->irq_domain = irq_domain_add_hierarchy(parent, 0, IRQC_NUM_IRQ,

0 commit comments

Comments
 (0)