mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-09 18:02:04 +08:00
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
![]() |
From 135c3c86a7cef4ba3d368da15b16c275b74582d3 Mon Sep 17 00:00:00 2001
|
||
|
From: Heiner Kallweit <hkallweit1@gmail.com>
|
||
|
Date: Mon, 3 Feb 2025 21:35:24 +0100
|
||
|
Subject: [PATCH] r8169: make Kconfig option for LED support user-visible
|
||
|
|
||
|
Make config option R8169_LEDS user-visible, so that users can remove
|
||
|
support if not needed.
|
||
|
|
||
|
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
|
||
|
Reviewed-by: Simon Horman <horms@kernel.org>
|
||
|
Link: https://patch.msgid.link/d29f0cdb-32bf-435f-b59d-dc96bca1e3ab@gmail.com
|
||
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
||
|
---
|
||
|
drivers/net/ethernet/realtek/Kconfig | 3 ++-
|
||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
--- a/drivers/net/ethernet/realtek/Kconfig
|
||
|
+++ b/drivers/net/ethernet/realtek/Kconfig
|
||
|
@@ -114,7 +114,8 @@ config R8169
|
||
|
will be called r8169. This is recommended.
|
||
|
|
||
|
config R8169_LEDS
|
||
|
- def_bool R8169 && LEDS_TRIGGER_NETDEV
|
||
|
+ bool "Support for controlling the NIC LEDs"
|
||
|
+ depends on R8169 && LEDS_TRIGGER_NETDEV
|
||
|
depends on !(R8169=y && LEDS_CLASS=m)
|
||
|
help
|
||
|
Optional support for controlling the NIC LED's with the netdev
|