bcm27xx: add support for linux v5.15
[openwrt/staging/ldir.git] / target / linux / bcm27xx / patches-5.15 / 950-0197-bcmgenet-Disable-skip_umac_reset-by-default.patch
1 From 3c2f8fa921db8c7233bc89a13163bd80767d18fc Mon Sep 17 00:00:00 2001
2 From: popcornmix <popcornmix@gmail.com>
3 Date: Wed, 1 Apr 2020 11:22:44 +0100
4 Subject: [PATCH] bcmgenet: Disable skip_umac_reset by default
5
6 Possible fixed upstream by 'net: bcmgenet: keep MAC in reset until PHY is up'
7
8 Signed-off-by: popcornmix <popcornmix@gmail.com>
9 ---
10 drivers/net/ethernet/broadcom/genet/bcmgenet.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 --- a/drivers/net/ethernet/broadcom/genet/bcmgenet.c
14 +++ b/drivers/net/ethernet/broadcom/genet/bcmgenet.c
15 @@ -67,7 +67,7 @@
16
17 /* Forward declarations */
18 static void bcmgenet_set_rx_mode(struct net_device *dev);
19 -static bool skip_umac_reset = true;
20 +static bool skip_umac_reset = false;
21 module_param(skip_umac_reset, bool, 0444);
22 MODULE_PARM_DESC(skip_umac_reset, "Skip UMAC reset step");
23