mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 00:34:52 +00:00
net: stmmac: platform: convert to devm_platform_ioremap_resource
Use devm_platform_ioremap_resource() to simplify code, which contains platform_get_resource and devm_ioremap_resource. Signed-off-by: Dejin Zheng <zhengdejin5@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4a601f1096
commit
7a1d0e61f1
1 changed files with 1 additions and 4 deletions
|
@ -645,8 +645,6 @@ EXPORT_SYMBOL_GPL(stmmac_remove_config_dt);
|
|||
int stmmac_get_platform_resources(struct platform_device *pdev,
|
||||
struct stmmac_resources *stmmac_res)
|
||||
{
|
||||
struct resource *res;
|
||||
|
||||
memset(stmmac_res, 0, sizeof(*stmmac_res));
|
||||
|
||||
/* Get IRQ information early to have an ability to ask for deferred
|
||||
|
@ -674,8 +672,7 @@ int stmmac_get_platform_resources(struct platform_device *pdev,
|
|||
if (stmmac_res->lpi_irq == -EPROBE_DEFER)
|
||||
return -EPROBE_DEFER;
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
stmmac_res->addr = devm_ioremap_resource(&pdev->dev, res);
|
||||
stmmac_res->addr = devm_platform_ioremap_resource(pdev, 0);
|
||||
|
||||
return PTR_ERR_OR_ZERO(stmmac_res->addr);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue