diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-02 18:55:55 +0200 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-02 18:55:55 +0200 |
commit | 00813d4dd976cc823fa089840ff2f4a10dd6cd0c (patch) | |
tree | 8f2c74a928c9ea0eceb64809d9039db824ae6663 /target/linux/brcm2708/patches-4.14/950-0170-lan78xx-Avoid-spurious-kevent-4-error.patch | |
parent | 19226502bf6393706defe7f049c587b32c9b4f33 (diff) | |
download | upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.tar.gz upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.tar.bz2 upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.zip |
brcm2708: remove linux 4.14 support
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/brcm2708/patches-4.14/950-0170-lan78xx-Avoid-spurious-kevent-4-error.patch')
-rw-r--r-- | target/linux/brcm2708/patches-4.14/950-0170-lan78xx-Avoid-spurious-kevent-4-error.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/target/linux/brcm2708/patches-4.14/950-0170-lan78xx-Avoid-spurious-kevent-4-error.patch b/target/linux/brcm2708/patches-4.14/950-0170-lan78xx-Avoid-spurious-kevent-4-error.patch deleted file mode 100644 index 519590b8e5..0000000000 --- a/target/linux/brcm2708/patches-4.14/950-0170-lan78xx-Avoid-spurious-kevent-4-error.patch +++ /dev/null @@ -1,30 +0,0 @@ -From de3b152b3662dbb68537619f2f24a893b59eb2c1 Mon Sep 17 00:00:00 2001 -From: Phil Elwell <phil@raspberrypi.org> -Date: Wed, 24 Jan 2018 15:19:39 +0000 -Subject: [PATCH 170/454] lan78xx: Avoid spurious kevent 4 "error" - -lan78xx_defer_event generates an error message whenever the work item -is already scheduled. lan78xx_open defers three events - -EVENT_STAT_UPDATE, EVENT_DEV_OPEN and EVENT_LINK_RESET. Being aware -of the likelihood (or certainty) of an error message, the DEV_OPEN -event is added to the set of pending events directly, relying on -the subsequent deferral of the EVENT_LINK_RESET call to schedule the -work. Take the same precaution with EVENT_STAT_UPDATE to avoid a -totally unnecessary error message. - -Signed-off-by: Phil Elwell <phil@raspberrypi.org> ---- - drivers/net/usb/lan78xx.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/drivers/net/usb/lan78xx.c -+++ b/drivers/net/usb/lan78xx.c -@@ -2498,7 +2498,7 @@ static void lan78xx_init_stats(struct la - dev->stats.rollover_max.eee_tx_lpi_transitions = 0xFFFFFFFF; - dev->stats.rollover_max.eee_tx_lpi_time = 0xFFFFFFFF; - -- lan78xx_defer_kevent(dev, EVENT_STAT_UPDATE); -+ set_bit(EVENT_STAT_UPDATE, &dev->flags); - } - - static int lan78xx_open(struct net_device *net) |