mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-01 11:36:49 +00:00
bad01d4806
Removed because they are upstream: generic/pending-5.15/110-v6.3-0001-spidev-Add-Silicon-Labs-EM3581-device-compatible.patch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-5.15.y&id=bff165a3993683daddf3f00563960e7675966f91 ipq807x/patches-5.15/0004-v5.16-arm64-dts-qcom-msm8996-Move-clock-cells-to-QMP-PHY-c.patch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-5.15.y&id=32f0e52f16d45d743b473659329f93d4a27c68bf Manually adapted: bcm27xx/patches-5.15/950-0040-spi-spidev-Completely-disable-the-spidev-warning.patch bcm27xx/patches-5.15/950-0578-spi-spidev-Restore-loading-from-Device-Tree.patch generic/pending-5.15/110-v6.3-0002-spidev-Add-Silicon-Labs-SI3210-device-compatible.patch Adapt kernel configuration for newly added option CONFIG_ARM64_ERRATUM_3194386. The leddev_list_lock attribute changed from rwlock_t to spinlock_t in: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=linux-5.15.y&id=590304b798a3b89e716b6b564f8ad14bc9373d93 Link: https://github.com/openwrt/openwrt/pull/16366 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
55 lines
1.5 KiB
Diff
55 lines
1.5 KiB
Diff
From 947acacab5ea151291b861cdfbde16ff5cf1b08c Mon Sep 17 00:00:00 2001
|
|
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
Date: Mon, 29 May 2023 18:32:41 +0200
|
|
Subject: [PATCH 11/13] leds: trigger: netdev: expose netdev trigger modes in
|
|
linux include
|
|
|
|
Expose netdev trigger modes to make them accessible by LED driver that
|
|
will support netdev trigger for hw control.
|
|
|
|
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
|
|
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
---
|
|
drivers/leds/trigger/ledtrig-netdev.c | 9 ---------
|
|
include/linux/leds.h | 10 ++++++++++
|
|
2 files changed, 10 insertions(+), 9 deletions(-)
|
|
|
|
--- a/drivers/leds/trigger/ledtrig-netdev.c
|
|
+++ b/drivers/leds/trigger/ledtrig-netdev.c
|
|
@@ -56,15 +56,6 @@ struct led_netdev_data {
|
|
bool hw_control;
|
|
};
|
|
|
|
-enum led_trigger_netdev_modes {
|
|
- TRIGGER_NETDEV_LINK = 0,
|
|
- TRIGGER_NETDEV_TX,
|
|
- TRIGGER_NETDEV_RX,
|
|
-
|
|
- /* Keep last */
|
|
- __TRIGGER_NETDEV_MAX,
|
|
-};
|
|
-
|
|
static void set_baseline_state(struct led_netdev_data *trigger_data)
|
|
{
|
|
int current_brightness;
|
|
--- a/include/linux/leds.h
|
|
+++ b/include/linux/leds.h
|
|
@@ -525,6 +525,16 @@ led_trigger_get_brightness(const struct
|
|
|
|
#endif /* CONFIG_LEDS_TRIGGERS */
|
|
|
|
+/* Trigger specific enum */
|
|
+enum led_trigger_netdev_modes {
|
|
+ TRIGGER_NETDEV_LINK = 0,
|
|
+ TRIGGER_NETDEV_TX,
|
|
+ TRIGGER_NETDEV_RX,
|
|
+
|
|
+ /* Keep last */
|
|
+ __TRIGGER_NETDEV_MAX,
|
|
+};
|
|
+
|
|
/* Trigger specific functions */
|
|
#ifdef CONFIG_LEDS_TRIGGER_DISK
|
|
void ledtrig_disk_activity(bool write);
|