mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-14 13:45:42 +08:00
5a73638212
All Armada 3720 boards have Armada 3720 processor which is of Armada 3700 family and do not have Armada 3710 processor. So none of them should have compatible string for Armada 3710 processor. Fix compatible string for all these boards by removing wrong processor string "marvell,armada3710" and adding family string "marvell,armada3700" as the last one. (Note that this is same way how are defined Armada 3710 DTS files). [gclement: fix conflict for v6.2] Signed-off-by: Pali Rohár <pali@kernel.org> Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
27 lines
645 B
Plaintext
27 lines
645 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Device Tree file for Globalscale Marvell ESPRESSOBin Board with eMMC
|
|
* Copyright (C) 2018 Marvell
|
|
*
|
|
* Romain Perier <romain.perier@free-electrons.com>
|
|
* Konstantin Porotchkin <kostap@marvell.com>
|
|
*
|
|
*/
|
|
/*
|
|
* Schematic available at http://espressobin.net/wp-content/uploads/2017/08/ESPRESSObin_V5_Schematics.pdf
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "armada-3720-espressobin.dtsi"
|
|
|
|
/ {
|
|
model = "Globalscale Marvell ESPRESSOBin Board (eMMC)";
|
|
compatible = "globalscale,espressobin-emmc", "globalscale,espressobin",
|
|
"marvell,armada3720", "marvell,armada3700";
|
|
};
|
|
|
|
&sdhci0 {
|
|
status = "okay";
|
|
};
|