forked from Openwrt/openwrt
Upstream e2015942e90a couldn't be backported to 6.6 because the following symbols were missing: - disable_work - disable_work_sync - enable_work Seee2015942e9
Upstream 34e5ededf4b8 couldn't be backported to 6.6 because the following symbol was missing: - pcim_iomap_region See34e5ededf4
Reorganize patch numbers now that < 6.12 patches are no longer needed. The following patches still differ from upstream: - e340bff27e63 phy_set_eee_broken symbol is missing in 6.12 https://github.com/torvalds/linux/commit/e340bff27e63 The following patches can't be backported to 6.12 due to missing symbols: - 5e7a74b6a357 phy_disable_eee_mode symbol is missing in 6.12 https://github.com/torvalds/linux/commit/5e7a74b6a357 Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
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
|