mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-19 08:21:27 +01:00
The LED enumerators are missing, which prevents the LEDs from being accurately told apart by label. Fill in the enumerators the same way they are already present on PDK3. Put this into local DT extras until matching kernel patch lands in Linux. Signed-off-by: Marek Vasut <marek.vasut@mailbox.org> Reviewed-by: Peng Fan <peng.fan@nxp.com>
27 lines
342 B
Plaintext
27 lines
342 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (C) 2022 Marek Vasut <marex@denx.de>
|
|
*/
|
|
|
|
#include "imx8mp-dhcom-u-boot.dtsi"
|
|
|
|
/ {
|
|
led {
|
|
led-0 {
|
|
function-enumerator = <0>;
|
|
};
|
|
|
|
led-1 {
|
|
function-enumerator = <1>;
|
|
};
|
|
|
|
led-2 {
|
|
function-enumerator = <2>;
|
|
};
|
|
|
|
led-3 {
|
|
function-enumerator = <3>;
|
|
};
|
|
};
|
|
};
|