Hi Sergey, On 05 May 2022 20:41 Sergey Shtylyov wrote: > On 5/4/22 5:54 PM, Phil Edworthy wrote: > > > R-Car has a combined interrupt line, ch22 = Line0_DiA | Line1_A | > Line2_A. > > R-Car gen3, you mean? Because R-Car gen2 has single IRQ... > > > RZ/V2M has separate interrupt lines for each of these, so add a > > feature that allows the driver to get these interrupts and call the > common handler. > > > > We keep the "ch22" name for Line0_DiA and "ch24" for Line3 interrupts > > to keep the code simple. > > Not sure I agree with such simplification -- at least about "ch22"... Ok, I can change it. > > Signed-off-by: Phil Edworthy <phil.edworthy@xxxxxxxxxxx> > > Reviewed-by: Biju Das <biju.das.jz@xxxxxxxxxxxxxx> > > [...] > > diff --git a/drivers/net/ethernet/renesas/ravb_main.c > > b/drivers/net/ethernet/renesas/ravb_main.c > > index d0b9688074ca..f12a23b9c391 100644 > > --- a/drivers/net/ethernet/renesas/ravb_main.c > > +++ b/drivers/net/ethernet/renesas/ravb_main.c > [...] > > @@ -2167,6 +2184,10 @@ static int ravb_close(struct net_device *ndev) > > free_irq(priv->rx_irqs[RAVB_BE], ndev); > > free_irq(priv->emac_irq, ndev); > > } > > + if (info->err_mgmt_irqs) { > > + free_irq(priv->erra_irq, ndev); > > + free_irq(priv->mgmta_irq, ndev); > > + } > > Shouldn't this be under: > > if (info->multi_irqs) { > > above? Can do, though I guess we could also have devices in the future that have separate err and mgmt interrupts, but not use the multiple channel interrupts. I'm easy either way. > > free_irq(ndev->irq, ndev); > > > > if (info->nc_queues) > > @@ -2665,6 +2686,22 @@ static int ravb_probe(struct platform_device > *pdev) > > } > > } > > > > + if (info->err_mgmt_irqs) { > > + irq = platform_get_irq_byname(pdev, "err_a"); > > + if (irq < 0) { > > + error = irq; > > + goto out_release; > > + } > > + priv->erra_irq = irq; > > + > > + irq = platform_get_irq_byname(pdev, "mgmt_a"); > > + if (irq < 0) { > > + error = irq; > > + goto out_release; > > + } > > + priv->mgmta_irq = irq; > > + } > > + > > Same here... > > > priv->clk = devm_clk_get(&pdev->dev, NULL); > > if (IS_ERR(priv->clk)) { > > error = PTR_ERR(priv->clk); Thanks Phil