mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-08 14:13:53 +00:00
net: emaclite: Use devm_platform_get_and_ioremap_resource() in xemaclite_of_probe()
A wrapper function is available since the commit 890cc39a87
("drivers: provide devm_platform_get_and_ioremap_resource()").
Thus reuse existing functionality instead of keeping duplicate source code.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Link: https://lore.kernel.org/r/f87065d0-e398-4ffa-bfa4-9ff99d73f206@web.de
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
4a49c88ea5
commit
709990df5e
@ -1114,8 +1114,7 @@ static int xemaclite_of_probe(struct platform_device *ofdev)
|
||||
|
||||
ndev->irq = rc;
|
||||
|
||||
res = platform_get_resource(ofdev, IORESOURCE_MEM, 0);
|
||||
lp->base_addr = devm_ioremap_resource(&ofdev->dev, res);
|
||||
lp->base_addr = devm_platform_get_and_ioremap_resource(ofdev, 0, &res);
|
||||
if (IS_ERR(lp->base_addr)) {
|
||||
rc = PTR_ERR(lp->base_addr);
|
||||
goto error;
|
||||
|
Loading…
Reference in New Issue
Block a user