cad1891021
Added three patches to fix the mmc issue as described here: https://github.com/SolidHal/Librean/issues/17 Source for the patches is the chrome os kernel. Links to the commits can be found in the issue. Locking into version 4.17.2 for the time being. Better organized patches. Added logic to only apply tested patches on fresh kernel. Moved some debian build improvements in from my devsus master branch, including switching from xfce to lxqt. May be able to add option between the two in the future, as the issue that led to switching DEs may have been with the xorg video drivers that are now skipped by the script and not xfce itself. Cleaned up uneeded old configs
31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From 239a5e3016b7f676bc3f56ea509ed172bf954001 Mon Sep 17 00:00:00 2001
|
|
From: Myy <myy@miouyouyou.fr>
|
|
Date: Sat, 22 Jul 2017 04:07:36 +0000
|
|
Subject: [PATCH] Remove the dependency to the clk_mali symbol.
|
|
|
|
Inspired by @wzzy2 patch
|
|
|
|
https://github.com/rockchip-linux/rockchip_forwardports/commit/359865c617129fe5fcc5530f4a88abcfaa6a5cb4
|
|
|
|
Signed-off-by: Myy <myy@miouyouyou.fr>
|
|
---
|
|
drivers/gpu/arm/midgard/mali_kbase_core_linux.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/gpu/arm/midgard/mali_kbase_core_linux.c b/drivers/gpu/arm/midgard/mali_kbase_core_linux.c
|
|
index 9cc65d2..27dcd9c 100644
|
|
--- a/drivers/gpu/arm/midgard/mali_kbase_core_linux.c
|
|
+++ b/drivers/gpu/arm/midgard/mali_kbase_core_linux.c
|
|
@@ -3793,7 +3793,7 @@ static int power_control_init(struct platform_device *pdev)
|
|
}
|
|
#endif /* LINUX_VERSION_CODE >= 3, 12, 0 */
|
|
|
|
- kbdev->clock = clk_get(kbdev->dev, "clk_mali");
|
|
+ kbdev->clock = of_clk_get(kbdev->dev->of_node, 0);
|
|
if (IS_ERR_OR_NULL(kbdev->clock)) {
|
|
err = PTR_ERR(kbdev->clock);
|
|
kbdev->clock = NULL;
|
|
--
|
|
2.10.2
|
|
|