From 0844bb9f5001bcb51764fd2888442782f96cc56e Mon Sep 17 00:00:00 2001 From: Hongquan Li Date: Wed, 30 Oct 2024 18:09:06 +0800 Subject: [PATCH] tests/kernel/device/boards: Fix compilation error The #power-domain-cells in hifive_unmatched.overlay does not exist, add #power-domain-cells = <0> to it Fixed #80503 Signed-off-by: Hongquan Li --- tests/kernel/device/boards/hifive_unmatched.overlay | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/kernel/device/boards/hifive_unmatched.overlay b/tests/kernel/device/boards/hifive_unmatched.overlay index 6f16d2d9b7b0e30..64a8c78ebb73772 100644 --- a/tests/kernel/device/boards/hifive_unmatched.overlay +++ b/tests/kernel/device/boards/hifive_unmatched.overlay @@ -67,16 +67,19 @@ compatible = "fakedomain"; status = "okay"; power-domains = <&fakedomain_2>; + #power-domain-cells = <0>; }; fakedomain_1: fakedomain_1 { compatible = "fakedomain"; status = "okay"; + #power-domain-cells = <0>; power-domains = <&fakedomain_0>; }; fakedomain_2: fakedomain_2 { compatible = "fakedomain"; status = "okay"; + #power-domain-cells = <0>; }; };