Skip to content

Commit b171566

Browse files
fkokosinskimmahadevan108
authored andcommitted
tests/kernel/device: add missing #power-domain-cells in overlays
This commits defines the `#power-domain-cells` properties for fakedomain nodes in the HiFive Unmatched devicetree overlay file. Without this change, this tests fails to build for the `hifive_unmatched` Zephyr target. Fixes #80503. Signed-off-by: Filip Kokosinski <[email protected]>
1 parent c22233a commit b171566

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/kernel/device/boards/hifive_unmatched.overlay

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,20 @@
6666
fakedomain_0: fakedomain_0 {
6767
compatible = "fakedomain";
6868
status = "okay";
69+
#power-domain-cells = <0>;
6970
power-domains = <&fakedomain_2>;
7071
};
7172

7273
fakedomain_1: fakedomain_1 {
7374
compatible = "fakedomain";
7475
status = "okay";
76+
#power-domain-cells = <0>;
7577
power-domains = <&fakedomain_0>;
7678
};
7779

7880
fakedomain_2: fakedomain_2 {
7981
compatible = "fakedomain";
8082
status = "okay";
83+
#power-domain-cells = <0>;
8184
};
8285
};

0 commit comments

Comments
 (0)