]> git.baikalelectronics.ru Git - kernel.git/commit
net: phy: rework Kconfig settings for MDIO_BUS
authorArnd Bergmann <arnd@arndb.de>
Wed, 26 Jul 2017 15:13:59 +0000 (17:13 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 28 Jul 2017 00:20:19 +0000 (17:20 -0700)
commit034ebb1e7977c9f6e2f62273d84c3c266d35d247
tree0a414036df692f0c361b894cedb8a7e81459d671
parent0c28f8f1d829bb2471f2450927ac31c2c529b3bf
net: phy: rework Kconfig settings for MDIO_BUS

I still see build errors in randconfig builds and have had this
patch for a while to locally work around it:

drivers/built-in.o: In function `xgene_mdio_probe':
mux-core.c:(.text+0x352154): undefined reference to `of_mdiobus_register'
mux-core.c:(.text+0x352168): undefined reference to `mdiobus_free'
mux-core.c:(.text+0x3521c0): undefined reference to `mdiobus_alloc_size'

The idea is that CONFIG_MDIO_BUS now reflects whether the mdio_bus
code is built-in or a module, and other drivers that use the core
code can simply depend on that, instead of having a complex
dependency line.

Fixes: 66627e97e10e ("net: phy: Allow splitting MDIO bus/device support from PHYs")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/Kconfig