brcm2708: add kernel 4.14 support
[openwrt/staging/chunkeey.git] / target / linux / brcm2708 / patches-4.14 / 950-0170-lan78xx-Avoid-spurious-kevent-4-error.patch
1 From de3b152b3662dbb68537619f2f24a893b59eb2c1 Mon Sep 17 00:00:00 2001
2 From: Phil Elwell <phil@raspberrypi.org>
3 Date: Wed, 24 Jan 2018 15:19:39 +0000
4 Subject: [PATCH 170/454] lan78xx: Avoid spurious kevent 4 "error"
5
6 lan78xx_defer_event generates an error message whenever the work item
7 is already scheduled. lan78xx_open defers three events -
8 EVENT_STAT_UPDATE, EVENT_DEV_OPEN and EVENT_LINK_RESET. Being aware
9 of the likelihood (or certainty) of an error message, the DEV_OPEN
10 event is added to the set of pending events directly, relying on
11 the subsequent deferral of the EVENT_LINK_RESET call to schedule the
12 work. Take the same precaution with EVENT_STAT_UPDATE to avoid a
13 totally unnecessary error message.
14
15 Signed-off-by: Phil Elwell <phil@raspberrypi.org>
16 ---
17 drivers/net/usb/lan78xx.c | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 --- a/drivers/net/usb/lan78xx.c
21 +++ b/drivers/net/usb/lan78xx.c
22 @@ -2494,7 +2494,7 @@ static void lan78xx_init_stats(struct la
23 dev->stats.rollover_max.eee_tx_lpi_transitions = 0xFFFFFFFF;
24 dev->stats.rollover_max.eee_tx_lpi_time = 0xFFFFFFFF;
25
26 - lan78xx_defer_kevent(dev, EVENT_STAT_UPDATE);
27 + set_bit(EVENT_STAT_UPDATE, &dev->flags);
28 }
29
30 static int lan78xx_open(struct net_device *net)