summaryrefslogtreecommitdiff
path: root/scripts/dtc/dt-style-selftest/bad/yaml-node-close.yaml
blob: e107659fd9e8c42c2f3df391dabcf0b94e24165f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/test-bad-node-close.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Test fixture with closing brace not on its own line

maintainers:
  - Test User <test@example.com>

properties:
  compatible:
    const: example,test-node-close
  reg:
    maxItems: 1

required:
  - compatible
  - reg

additionalProperties: false

examples:
  - |
    bus@10000 {
        compatible = "simple-bus";
        reg = <0x10000 0x1000>;

        empty {};
    };