mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 23:52:08 +02:00
net: ag71xx: use devm_ioremap_resource
We can just use res directly. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://patch.msgid.link/20240930181823.288892-2-rosenp@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
b63c755cb6
commit
ab4239c8a7
|
|
@ -1841,9 +1841,9 @@ static int ag71xx_probe(struct platform_device *pdev)
|
|||
return PTR_ERR(ag->mac_reset);
|
||||
}
|
||||
|
||||
ag->mac_base = devm_ioremap(&pdev->dev, res->start, resource_size(res));
|
||||
if (!ag->mac_base)
|
||||
return -ENOMEM;
|
||||
ag->mac_base = devm_ioremap_resource(&pdev->dev, res);
|
||||
if (IS_ERR(ag->mac_base))
|
||||
return PTR_ERR(ag->mac_base);
|
||||
|
||||
/* ensure that HW is in manual polling mode before interrupts are
|
||||
* activated. Otherwise ag71xx_interrupt might call napi_schedule
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user