xref: /linux/scripts/dtc/dt-style-selftest/good/dts-cont-align.dts (revision 9611c0ce215a66770ccbe5c126bf57ba8c31bcad)
1// SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2/*
3 * Test fixture: tab-indented .dts with a tab-and-space aligned
4 * multi-line property. Continuation lines mix tabs for indent and
5 * spaces for alignment by design; that must not be flagged.
6 */
7
8/dts-v1/;
9
10/ {
11	compatible = "example,test-board";
12	#address-cells = <1>;
13	#size-cells = <1>;
14
15	interrupt-controller@10000 {
16		compatible = "example,intc";
17		reg = <0x10000 0x1000>;
18		interrupts = <1 2 3>,
19			     <4 5 6>,
20			     <7 8 9>;
21		pinmux = <
22			 0x01
23			 0x02
24			 >;
25	};
26};
27