Files
meta-riscv/recipes-kernel/linux/files/freedom-u540/0007-RISC-V-Networking-fix-Hack.patch
Alistair Francis a14f6bbc93 recipes-kernel: linux-mainline: Initial commit of mainline 5.1 kernel
Add a linux-mainline kernel from 5.1-rc1. The idea is that this kernel
will autorev the 5.1 development cycle and then be updated to autorev
the 5.1 stable branch after release.

Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
2019-03-21 06:12:54 -07:00

40 lines
1.3 KiB
Diff

From b720ad246b285e678cc16f0c35ef1921ace80043 Mon Sep 17 00:00:00 2001
From: Atish Patra <atish.patra@wdc.com>
Date: Fri, 7 Sep 2018 10:22:27 -0700
Subject: [PATCH 07/10] RISC-V: Networking fix Hack
It looks like that kernel driver now supports reseting the
signal one additional time. As it had been already reset
twice in FSBL, PHY gets into incorrect state causing below error.
----------------------------------------------------------------------
macb 10090000.ethernet (unnamed net_device) (uninitialized): Could not attach to PHY
macb: probe of 10090000.ethernet failed with error -110
----------------------------------------------------------------------
This patch is just a temporary fix until we have a fix a FSBL.
It is just a **HACK** and **NOT TO BE MERGED** into mainline.
Signed-off-by: Atish Patra <atish.patra@wdc.com>
---
drivers/net/phy/mdio_bus.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/net/phy/mdio_bus.c b/drivers/net/phy/mdio_bus.c
index 4be4cc09eb90..a69a95304cb3 100644
--- a/drivers/net/phy/mdio_bus.c
+++ b/drivers/net/phy/mdio_bus.c
@@ -57,9 +57,6 @@ static int mdiobus_register_gpiod(struct mdio_device *mdiodev)
mdiodev->reset = gpiod;
- /* Assert the reset signal again */
- mdio_device_reset(mdiodev, 1);
-
return 0;
}
--
2.21.0