Linux v4.13-rc4-139-g8d31f80eb388
This commit is contained in:
parent
35e84f14fd
commit
09179817b6
@ -1,49 +0,0 @@
|
|||||||
From 8bfbdce4d7da6353d1039148a4c90dd463f1fb8f Mon Sep 17 00:00:00 2001
|
|
||||||
From: Laura Abbott <labbott@redhat.com>
|
|
||||||
Date: Thu, 27 Jul 2017 13:52:17 -0700
|
|
||||||
Subject: [PATCH] Revert "xgene: Don't fail probe, if there is no clk resource
|
|
||||||
for SGMII interfaces"
|
|
||||||
|
|
||||||
This reverts commit 0db01097cabd97897d123b4c5d805d1a7b061d82.
|
|
||||||
|
|
||||||
Signed-off-by: Laura Abbott <labbott@redhat.com>
|
|
||||||
---
|
|
||||||
drivers/net/ethernet/apm/xgene/xgene_enet_main.c | 22 ++++++++++------------
|
|
||||||
1 file changed, 10 insertions(+), 12 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/drivers/net/ethernet/apm/xgene/xgene_enet_main.c b/drivers/net/ethernet/apm/xgene/xgene_enet_main.c
|
|
||||||
index 86058a9f3417..d3906f6b01bd 100644
|
|
||||||
--- a/drivers/net/ethernet/apm/xgene/xgene_enet_main.c
|
|
||||||
+++ b/drivers/net/ethernet/apm/xgene/xgene_enet_main.c
|
|
||||||
@@ -1785,18 +1785,16 @@ static int xgene_enet_get_resources(struct xgene_enet_pdata *pdata)
|
|
||||||
|
|
||||||
xgene_enet_gpiod_get(pdata);
|
|
||||||
|
|
||||||
- if (pdata->phy_mode != PHY_INTERFACE_MODE_SGMII) {
|
|
||||||
- pdata->clk = devm_clk_get(&pdev->dev, NULL);
|
|
||||||
- if (IS_ERR(pdata->clk)) {
|
|
||||||
- /* Abort if the clock is defined but couldn't be
|
|
||||||
- * retrived. Always abort if the clock is missing on
|
|
||||||
- * DT system as the driver can't cope with this case.
|
|
||||||
- */
|
|
||||||
- if (PTR_ERR(pdata->clk) != -ENOENT || dev->of_node)
|
|
||||||
- return PTR_ERR(pdata->clk);
|
|
||||||
- /* Firmware may have set up the clock already. */
|
|
||||||
- dev_info(dev, "clocks have been setup already\n");
|
|
||||||
- }
|
|
||||||
+ pdata->clk = devm_clk_get(&pdev->dev, NULL);
|
|
||||||
+ if (IS_ERR(pdata->clk)) {
|
|
||||||
+ /* Abort if the clock is defined but couldn't be retrived.
|
|
||||||
+ * Always abort if the clock is missing on DT system as
|
|
||||||
+ * the driver can't cope with this case.
|
|
||||||
+ */
|
|
||||||
+ if (PTR_ERR(pdata->clk) != -ENOENT || dev->of_node)
|
|
||||||
+ return PTR_ERR(pdata->clk);
|
|
||||||
+ /* Firmware may have set up the clock already. */
|
|
||||||
+ dev_info(dev, "clocks have been setup already\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pdata->phy_mode != PHY_INTERFACE_MODE_XGMII)
|
|
||||||
--
|
|
||||||
2.13.0
|
|
||||||
|
|
2
gitrev
2
gitrev
@ -1 +1 @@
|
|||||||
bfa738cf3dfae2111626650f86135f93c5ff0a22
|
8d31f80eb38819e4f2905ad21c0e8998382a08f7
|
||||||
|
@ -69,7 +69,7 @@ Summary: The Linux kernel
|
|||||||
# The rc snapshot level
|
# The rc snapshot level
|
||||||
%global rcrev 4
|
%global rcrev 4
|
||||||
# The git snapshot level
|
# The git snapshot level
|
||||||
%define gitrev 2
|
%define gitrev 3
|
||||||
# Set rpm version accordingly
|
# Set rpm version accordingly
|
||||||
%define rpmversion 4.%{upstream_sublevel}.0
|
%define rpmversion 4.%{upstream_sublevel}.0
|
||||||
%endif
|
%endif
|
||||||
@ -615,9 +615,6 @@ Patch312: qcom-display-iommu.patch
|
|||||||
# https://patchwork.kernel.org/patch/9839803/
|
# https://patchwork.kernel.org/patch/9839803/
|
||||||
Patch313: qcom-Force-host-mode-for-USB-on-apq8016-sbc.patch
|
Patch313: qcom-Force-host-mode-for-USB-on-apq8016-sbc.patch
|
||||||
|
|
||||||
# Breaking mustang booting
|
|
||||||
Patch314: 0001-Revert-xgene-Don-t-fail-probe-if-there-is-no-clk-res.patch
|
|
||||||
|
|
||||||
# http://www.spinics.net/lists/dri-devel/msg132235.html
|
# http://www.spinics.net/lists/dri-devel/msg132235.html
|
||||||
Patch320: bcm283x-vc4-Fix-OOPSes-from-trying-to-cache-a-partially-constructed-BO..patch
|
Patch320: bcm283x-vc4-Fix-OOPSes-from-trying-to-cache-a-partially-constructed-BO..patch
|
||||||
|
|
||||||
@ -2199,6 +2196,9 @@ fi
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Aug 10 2017 Laura Abbott <labbott@fedoraproject.org> - 4.13.0-0.rc4.git3.1
|
||||||
|
- Linux v4.13-rc4-139-g8d31f80eb388
|
||||||
|
|
||||||
* Wed Aug 09 2017 Laura Abbott <labbott@fedoraproject.org> - 4.13.0-0.rc4.git2.1
|
* Wed Aug 09 2017 Laura Abbott <labbott@fedoraproject.org> - 4.13.0-0.rc4.git2.1
|
||||||
- Linux v4.13-rc4-52-gbfa738cf3dfa
|
- Linux v4.13-rc4-52-gbfa738cf3dfa
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1,4 +1,4 @@
|
|||||||
SHA512 (perf-man-4.12.tar.gz) = 4d3bbda1f520dba0007c351af46f45085fe4842074eb2e01aee736fd369df595f8f72ed6c1192715f1120bf3353279777f9dca1178fe93bffe5be2de700d409c
|
SHA512 (perf-man-4.12.tar.gz) = 4d3bbda1f520dba0007c351af46f45085fe4842074eb2e01aee736fd369df595f8f72ed6c1192715f1120bf3353279777f9dca1178fe93bffe5be2de700d409c
|
||||||
SHA512 (linux-4.12.tar.xz) = 8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728
|
SHA512 (linux-4.12.tar.xz) = 8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728
|
||||||
SHA512 (patch-4.13-rc4.xz) = 0f03c25f705892ffcff410b3d3068fe25a876c91ec251497ceda37bfdef1c88bf0ed5486c5e68f399db1f5a11e9a08c48d894cc80cb8e9b3a56ce02f203cc1bc
|
SHA512 (patch-4.13-rc4.xz) = 0f03c25f705892ffcff410b3d3068fe25a876c91ec251497ceda37bfdef1c88bf0ed5486c5e68f399db1f5a11e9a08c48d894cc80cb8e9b3a56ce02f203cc1bc
|
||||||
SHA512 (patch-4.13-rc4-git2.xz) = 72dc66ecdc6ac62fc9fcf55fd197e5063cb678a1ba2928fe28ea8a79fa58adb1a10fca6f63f766dac35f88dfd80347522e9278a4a14ac09548e3a58863fc8418
|
SHA512 (patch-4.13-rc4-git3.xz) = 31cfcc546eaf9a50bff6ab7d0f031a7dd95fc7e00e558efa00a8d68c96703f0216a1e03a03feda7abe666baa6bb2b2be61517a0830587eae3d98eafddd0b7355
|
||||||
|
Loading…
Reference in New Issue
Block a user