summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2023-05-03 12:06:09 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2023-05-09 09:22:56 +0200
commit3dc33b2cbd68d345587841726f3ec728d2c2bf9c (patch)
treeab59d73d232f3a5c22224a4ac8a9aabc6289e667
parente07220e6009346ee450aa07fa1cdaa4f6fe3565f (diff)
downloadbarebox-3dc33b2cbd68d345587841726f3ec728d2c2bf9c.tar.gz
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 <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20230503100609.1522959-1-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--drivers/net/realtek-dsa/Kconfig3
1 files changed, 1 insertions, 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