Re: [PATCH net] Revert "net: ethernet: bgmac: Use devm_platform_ioremap_resource_byname"

From: Andrew Lunn
Date: Wed Feb 16 2022 - 14:02:09 EST


On Wed, Feb 16, 2022 at 10:46:34AM -0800, Florian Fainelli wrote:
> From: Jonas Gorski <jonas.gorski@xxxxxxxxx>
>
> This reverts commit 3710e80952cf2dc48257ac9f145b117b5f74e0a5.
>
> Since idm_base and nicpm_base are still optional resources not present
> on all platforms, this breaks the driver for everything except Northstar
> 2 (which has both).
>
> The same change was already reverted once with 755f5738ff98 ("net:
> broadcom: fix a mistake about ioremap resource").
>
> So let's do it again.
>
> - bgmac->plat.idm_base = devm_platform_ioremap_resource_byname(pdev, "idm_base");
> - if (IS_ERR(bgmac->plat.idm_base))
> - return PTR_ERR(bgmac->plat.idm_base);
> - else
> + /* The idm_base resource is optional for some platforms */

I see you are adding a comment. Good idea. Lets see if the bot
handlers are clever enough to actually read it, or just blindly do
what the bot says to do, without actually trying to understand the
code.

Reviewed-by: Andrew Lunn <andrew@xxxxxxx>

Andrew