aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/patches-4.4/381-net-bcm63xx_enet-fully-reset-ephy.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/brcm63xx/patches-4.4/381-net-bcm63xx_enet-fully-reset-ephy.patch')
-rw-r--r--target/linux/brcm63xx/patches-4.4/381-net-bcm63xx_enet-fully-reset-ephy.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/target/linux/brcm63xx/patches-4.4/381-net-bcm63xx_enet-fully-reset-ephy.patch b/target/linux/brcm63xx/patches-4.4/381-net-bcm63xx_enet-fully-reset-ephy.patch
deleted file mode 100644
index c591243799..0000000000
--- a/target/linux/brcm63xx/patches-4.4/381-net-bcm63xx_enet-fully-reset-ephy.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From: Jonas Gorski <jonas.gorski@gmail.com>
-Subject: [PATCH] net: bcm63xx_enet: fully reset ephy
-
-Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
----
- drivers/net/ethernet/broadcom/bcm63xx_enet.c | 4 ++--
- 1 file changed, 2 insertions(+), , 1 deletions(-)
-
---- a/drivers/net/ethernet/broadcom/bcm63xx_enet.c
-+++ b/drivers/net/ethernet/broadcom/bcm63xx_enet.c
-@@ -2835,7 +2835,7 @@ static int bcm_enet_shared_probe(struct
-
- memset(bcm_enet_shared_base, 0, sizeof(bcm_enet_shared_base));
-
-- ephy_reset = devm_gpiod_get_optional(&pdev->dev, "ephy-reset", GPIOD_ASIS);
-+ ephy_reset = devm_gpiod_get_optional(&pdev->dev, "ephy-reset", GPIOD_OUT_HIGH);
- if (IS_ERR(ephy_reset))
- return PTR_ERR(ephy_reset);
-
-@@ -2849,7 +2849,7 @@ static int bcm_enet_shared_probe(struct
- memcpy(bcm_enet_shared_base, p, sizeof(bcm_enet_shared_base));
-
- if (ephy_reset)
-- gpiod_direction_output(ephy_reset, 0);
-+ gpiod_set_value(ephy_reset, 0);
-
- return 0;
- }