Dear Bartosz, Thanks for your comments! On Tue, 2022-01-25 at 11:22 +0100, Bartosz Golaszewski wrote: > On Thu, Jan 20, 2022 at 8:02 AM Biao Huang <biao.huang@xxxxxxxxxxxx> > wrote: > > > > If the flags in request_irq() is IRQF_TRIGGER_NONE, the trigger > > method > > is determined by "interrupt" property in dts. > > So, modify the flag from IRQF_TRIGGER_FALLING to IRQF_TRIGGER_NONE. > > > > Signed-off-by: Biao Huang <biao.huang@xxxxxxxxxxxx> > > Signed-off-by: Yinghua Pan <ot_yinghua.pan@xxxxxxxxxxxx> > > --- > > drivers/net/ethernet/mediatek/mtk_star_emac.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/net/ethernet/mediatek/mtk_star_emac.c > > b/drivers/net/ethernet/mediatek/mtk_star_emac.c > > index 26f5020f2e9c..7c2af775d601 100644 > > --- a/drivers/net/ethernet/mediatek/mtk_star_emac.c > > +++ b/drivers/net/ethernet/mediatek/mtk_star_emac.c > > @@ -959,7 +959,7 @@ static int mtk_star_enable(struct net_device > > *ndev) > > > > /* Request the interrupt */ > > ret = request_irq(ndev->irq, mtk_star_handle_irq, > > - IRQF_TRIGGER_FALLING, ndev->name, ndev); > > + IRQF_TRIGGER_NONE, ndev->name, ndev); > > if (ret) > > goto err_free_skbs; > > > > -- > > 2.25.1 > > > > Reviewed-by: Bartosz Golaszewski <brgl@xxxxxxxx> I'll add reviewd-by in next send.