Linux Audio

Check our new training course

Loading...
v5.9
 1// SPDX-License-Identifier: GPL-2.0
 2/dts-v1/;
 3/plugin/;
 4
 
 
 5/ {
 
 
 
 
 
 6	testcase-data {
 7		changeset {
 8			prop-update = "hello";
 9			prop-remove = "world";
10			node-remove {
11			};
12		};
13	};
 
14};
15#include "tests-phandle.dtsi"
16#include "tests-interrupts.dtsi"
17#include "tests-match.dtsi"
18#include "tests-address.dtsi"
19#include "tests-platform.dtsi"
20#include "tests-overlay.dtsi"
v5.14.15
 1// SPDX-License-Identifier: GPL-2.0
 2/dts-v1/;
 3/plugin/;
 4
 5#include "testcases_common.dtsi"
 6
 7/ {
 8	/*
 9	 * testcase data that intentionally results in an error is located here
10	 * instead of in testcases_common.dtsi so that the static overlay apply
11	 * tests will not include the error.
12	 */
13	testcase-data {
14		testcase-device2 {
15			compatible = "testcase-device";
16			interrupt-parent = <&test_intc2>;
17			interrupts = <1>; /* invalid specifier - too short */
 
18		};
19	};
20
21};