mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Documentation/process/license-rules.rst and checkpatch expect the SPDX identifier syntax for multiple licenses to use capital "OR". Correct it to keep consistent format and avoid copy-paste issues. Link: https://lore.kernel.org/r/20240208105314.129095-1-krzysztof.kozlowski@linaro.org Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
28 lines
523 B
Text
28 lines
523 B
Text
// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
/*
|
|
* Device Tree file for AMD Pensando Elba Board.
|
|
*
|
|
* Copyright 2020-2022 Advanced Micro Devices, Inc.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "elba.dtsi"
|
|
#include "elba-16core.dtsi"
|
|
#include "elba-asic-common.dtsi"
|
|
#include "elba-flash-parts.dtsi"
|
|
|
|
/ {
|
|
model = "AMD Pensando Elba Board";
|
|
compatible = "amd,pensando-elba-ortano", "amd,pensando-elba";
|
|
|
|
aliases {
|
|
serial0 = &uart0;
|
|
spi0 = &spi0;
|
|
spi1 = &qspi;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
};
|