net: phy: Make driver overloading get_phy_id depend on !COMPILE_TEST
authorTom Rini <trini@konsulko.com>
Fri, 10 Oct 2025 17:36:33 +0000 (11:36 -0600)
committerJerome Forissier <jerome.forissier@linaro.org>
Wed, 22 Oct 2025 12:28:33 +0000 (14:28 +0200)
commit85c2c2c517ac8a6bba406bfd84fa11b26bbcb9aa
tree9a4014f74752df32719951952f462936ac886837
parent81e5708cc2c865df606e49aed5415adb2a662171
net: phy: Make driver overloading get_phy_id depend on !COMPILE_TEST

With commit 597fe041a85f ("net/phy: enable get_phy_id redefinable") we
made get_phy_id a public but weak function, so that PHY drivers that had
required non-standard ways of getting the PHY ID could be supported.
However, overloading a weak function multiple times is (rightly) a link
error. At this point, we have two PHYs which make use of this feature,
so make both of them only available when COMPILE_TEST is unset, as part
of being able to support "allyesconfig" in the future.

Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/net/phy/Kconfig