The use of firmware_loader is an implementations detail of the driver, so it should be enabled along with it. The non-Rust option FW_LOADER is typically selected rather than depended on, let's make the Rust abstraction behave the same. Fixes: fd3eaad826da ("net: phy: add Applied Micro QT2025 PHY driver") Signed-off-by: Alexandre Courbot --- drivers/net/phy/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig index 98700d069191..d4987fc6b26c 100644 --- a/drivers/net/phy/Kconfig +++ b/drivers/net/phy/Kconfig @@ -132,7 +132,7 @@ config ADIN1100_PHY config AMCC_QT2025_PHY tristate "AMCC QT2025 PHY" depends on RUST_PHYLIB_ABSTRACTIONS - depends on RUST_FW_LOADER_ABSTRACTIONS + select RUST_FW_LOADER_ABSTRACTIONS help Adds support for the Applied Micro Circuits Corporation QT2025 PHY. -- 2.51.2