Hi! > From: Lad Prabhakar > > commit bbe78cb1399b4ba6b6d14943fb9dadefe9c17b5b upstream. > > Use a local struct device pointer in rzv2h_icu_probe_common() to avoid > repeated dereferencing of pdev->dev. > > --- a/drivers/irqchip/irq-renesas-rzv2h.c > +++ b/drivers/irqchip/irq-renesas-rzv2h.c > @@ -625,14 +627,14 @@ static int rzv2h_icu_init_common(struct device_node *node, struct device_node *p > > /* > * coccicheck complains about a missing put_device call before returning, but it's a false > - * positive. We still need &pdev->dev after successfully returning from this function. > + * positive. We still need dev after successfully returning from this function. > */ > return 0; I believe the search and replace went too far here. For reader, original comment was more useful. But maybe it should say in english what device we actually need. Best regards, Pavel