mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-20 17:32:57 +00:00
ramips: ethernet: use devm for request_irq
Allows removing free_irq. Simpler. Oddly enough the other switch code already does this. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/16050 Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
5d2a008670
commit
40452223d6
@ -245,7 +245,7 @@ int mtk_gsw_init(struct fe_priv *priv)
|
||||
mt7620_ephy_init(gsw);
|
||||
|
||||
if (gsw->irq) {
|
||||
ret = request_irq(gsw->irq, gsw_interrupt_mt7620, 0,
|
||||
ret = devm_request_irq(&pdev->dev, gsw->irq, gsw_interrupt_mt7620, 0,
|
||||
"gsw", priv);
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "Failed to request irq");
|
||||
|
@ -1414,7 +1414,6 @@ static void fe_uninit(struct net_device *dev)
|
||||
fe_mdio_cleanup(priv);
|
||||
|
||||
fe_reg_w32(0, FE_REG_FE_INT_ENABLE);
|
||||
free_irq(dev->irq, dev);
|
||||
}
|
||||
|
||||
static int fe_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
|
||||
|
Loading…
x
Reference in New Issue
Block a user