diff mbox series

[net-next:] net: mdiobus: fix fwnode_mdbiobus_register() fallback case

Message ID 20210624005151.3735706-1-mw@semihalf.com
State New
Headers show
Series [net-next:] net: mdiobus: fix fwnode_mdbiobus_register() fallback case | expand

Commit Message

Marcin Wojtas June 24, 2021, 12:51 a.m. UTC
The fallback case of fwnode_mdbiobus_register()
(relevant for !CONFIG_FWNODE_MDIO) was defined with wrong
argument name, causing a compilation error. Fix that.

Signed-off-by: Marcin Wojtas <mw@semihalf.com>
---
 include/linux/fwnode_mdio.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

patchwork-bot+netdevbpf@kernel.org June 24, 2021, 6:40 p.m. UTC | #1
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Thu, 24 Jun 2021 02:51:51 +0200 you wrote:
> The fallback case of fwnode_mdbiobus_register()
> (relevant for !CONFIG_FWNODE_MDIO) was defined with wrong
> argument name, causing a compilation error. Fix that.
> 
> Signed-off-by: Marcin Wojtas <mw@semihalf.com>
> ---
>  include/linux/fwnode_mdio.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [net-next:] net: mdiobus: fix fwnode_mdbiobus_register() fallback case
    https://git.kernel.org/netdev/net-next/c/c88c192dc3ea

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/include/linux/fwnode_mdio.h b/include/linux/fwnode_mdio.h
index 13d4ae8fee0a..f62817c23137 100644
--- a/include/linux/fwnode_mdio.h
+++ b/include/linux/fwnode_mdio.h
@@ -40,7 +40,7 @@  static inline int fwnode_mdiobus_register(struct mii_bus *bus,
 	 * This way, we don't have to keep compat bits around in drivers.
 	 */
 
-	return mdiobus_register(mdio);
+	return mdiobus_register(bus);
 }
 #endif