mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
* Add a series of patches for sunxi 5.10 Patches from the repository https://github.com/megous/linux branches of orange-pi-5.10 * Patches adapted to the kernel version v5.10.81 * Remove unnecessary patches 5.10.19-5.10.75 * Kernel switch tag=v5.10.81 for the current sunxi * Adjust broken patches, build tested on sunxi and sunxi64 * Remove patch added by mistake Co-authored-by: Igor Pecovnik <igor.pecovnik@gmail.com>
27 lines
1001 B
Plaintext
27 lines
1001 B
Plaintext
From a4aa5e03611fe24bef94b891716c2f11197b89ad Mon Sep 17 00:00:00 2001
|
|
From: Mitko Gamishev <hehopmajieh@debian.bg>
|
|
Date: Wed, 5 Feb 2020 15:30:38 +0200
|
|
Subject: [PATCH 18/48]
|
|
net-dwmac-Apply-maximum-divider-for-clock-above-300MHz.patch
|
|
|
|
---
|
|
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
|
|
index 7da18c9afa01..ea236cc11bf6 100644
|
|
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
|
|
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
|
|
@@ -252,7 +252,7 @@ static void stmmac_clk_csr_set(struct stmmac_priv *priv)
|
|
priv->clk_csr = STMMAC_CSR_100_150M;
|
|
else if ((clk_rate >= CSR_F_150M) && (clk_rate < CSR_F_250M))
|
|
priv->clk_csr = STMMAC_CSR_150_250M;
|
|
- else if ((clk_rate >= CSR_F_250M) && (clk_rate < CSR_F_300M))
|
|
+ else if (clk_rate >= CSR_F_250M)
|
|
priv->clk_csr = STMMAC_CSR_250_300M;
|
|
}
|
|
|
|
--
|
|
2.25.1
|
|
|