aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafał Miłecki <rafal@milecki.pl>2024-02-13 07:14:59 +0100
committerAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>2024-04-05 09:49:51 +0200
commit65d0eb62f0f19877ccc6f1527216690bcab884f0 (patch)
tree1688b8b9deb2c7d936dd14be56dce480463e42cf
parenta2ac24e9a4dc028c4ac1aa5b1a169f186ba8748b (diff)
downloaddevicetree-rebasing-65d0eb62f0f19877ccc6f1527216690bcab884f0.tar.gz
arm64: dts: mediatek: mt7986: prefix BPI-R3 cooling maps with "map-"
This fixes: arch/arm64/boot/dts/mediatek/mt7986a-bananapi-bpi-r3.dtb: thermal-zones: cpu-thermal:cooling-maps: 'cpu-active-high', 'cpu-active-low', 'cpu-active-med' do not match any of the regexes: '^map[-a-zA-Z0-9]*$', 'pinctrl-[0-9]+' from schema $id: http://devicetree.org/schemas/thermal/thermal-zones.yaml# Fixes: c26f779a2295 ("arm64: dts: mt7986: add pwm-fan and cooling-maps to BPI-R3 dts") Cc: Daniel Golle <daniel@makrotopia.org> Signed-off-by: Rafał Miłecki <rafal@milecki.pl> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Link: https://lore.kernel.org/r/20240213061459.17917-1-zajec5@gmail.com Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> [ upstream commit: f8c65a5e4560781f2ea175d8f26cd75ac98e8d78 ]
-rw-r--r--src/arm64/mediatek/mt7986a-bananapi-bpi-r3.dts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arm64/mediatek/mt7986a-bananapi-bpi-r3.dts b/src/arm64/mediatek/mt7986a-bananapi-bpi-r3.dts
index e04b1c0c0ebbfb..ed79ad1ae8716e 100644
--- a/src/arm64/mediatek/mt7986a-bananapi-bpi-r3.dts
+++ b/src/arm64/mediatek/mt7986a-bananapi-bpi-r3.dts
@@ -146,19 +146,19 @@
&cpu_thermal {
cooling-maps {
- cpu-active-high {
+ map-cpu-active-high {
/* active: set fan to cooling level 2 */
cooling-device = <&fan 2 2>;
trip = <&cpu_trip_active_high>;
};
- cpu-active-med {
+ map-cpu-active-med {
/* active: set fan to cooling level 1 */
cooling-device = <&fan 1 1>;
trip = <&cpu_trip_active_med>;
};
- cpu-active-low {
+ map-cpu-active-low {
/* active: set fan to cooling level 0 */
cooling-device = <&fan 0 0>;
trip = <&cpu_trip_active_low>;