1# Copyright (c) 2020 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4description: | 5 Test binding for 3 levels of "child-binding". 6 7 Previous versions of Zephyr only allowed up to two levels of 8 "child-binding:" in a YAML file. This file is used to test that the 9 restriction no longer holds. 10 11compatible: "vnd,great-grandchild-bindings" 12 13include: [base.yaml] 14 15child-binding: 16 description: child node, no properties 17 18 child-binding: 19 description: grandchild node, no properties 20 21 child-binding: 22 description: great-grandchild node, ggc-prop property 23 24 properties: 25 ggc-prop: 26 type: int 27 required: true 28