mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-08 14:28:22 +01:00
73f3286067
With my device, around one boot out of 3 was not able to finish. I found that the mmc order was not correct in that cases. Fix: enforcing device order in DTS.
29 lines
846 B
Diff
29 lines
846 B
Diff
From 9b4baa9b5aab0511c46a1ae95485e1a3ea984352 Mon Sep 17 00:00:00 2001
|
|
From: matteolel <matteolel91@hotmail.it>
|
|
Date: Fri, 9 Dec 2022 16:38:11 +0000
|
|
Subject: [PATCH] dts: allwinner: bananapi-m2-zreo: Enforce consistent MMC
|
|
numbering
|
|
|
|
Enforce MMC number (sometimes the order was wrong and the device does not boot).
|
|
---
|
|
arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts b/arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts
|
|
index 8e8634ff2..37a2ed937 100644
|
|
--- a/arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts
|
|
+++ b/arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts
|
|
@@ -20,6 +20,9 @@ / {
|
|
aliases {
|
|
serial0 = &uart0;
|
|
serial1 = &uart1;
|
|
+ mmc0 = &mmc0;
|
|
+ mmc1 = &mmc1;
|
|
+ mmc2 = &mmc2;
|
|
};
|
|
|
|
chosen {
|
|
--
|
|
2.25.1
|
|
|