From 3dc33b2cbd68d345587841726f3ec728d2c2bf9c Mon Sep 17 00:00:00 2001 From: Ahmad Fatoum Date: Wed, 3 May 2023 12:06:09 +0200 Subject: net: dsa: realtek: fix Kconfig selects Unlike Linux, barebox has no CONFIG_FIXED_PHY or CONFIG_IRQ_DOMAIN. The former is implied by CONFIG_PHYLIB and the latter is unneeded, so revise the Kconfig option accordingly. Signed-off-by: Ahmad Fatoum Link: https://lore.barebox.org/20230503100609.1522959-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer --- drivers/net/realtek-dsa/Kconfig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/realtek-dsa/Kconfig b/drivers/net/realtek-dsa/Kconfig index dd8599565f..0708f1ef96 100644 --- a/drivers/net/realtek-dsa/Kconfig +++ b/drivers/net/realtek-dsa/Kconfig @@ -2,8 +2,7 @@ menuconfig DRIVER_NET_DSA_REALTEK tristate "Realtek Ethernet switch family support" depends on DSA - select FIXED_PHY - select IRQ_DOMAIN + select PHYLIB select REALTEK_PHY select REGMAP help -- cgit v1.2.1