Commit b1715669 authored by Filip Kokosinski's avatar Filip Kokosinski Committed by Mahesh Mahadevan
Browse files

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: default avatarFilip Kokosinski <fkokosinski@antmicro.com>
parent c22233a1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -66,17 +66,20 @@
	fakedomain_0: fakedomain_0 {
		compatible = "fakedomain";
		status = "okay";
		#power-domain-cells = <0>;
		power-domains = <&fakedomain_2>;
	};

	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>;
	};
};