1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/test-bad-value-ws-multiline.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Test fixture with extra whitespace in a multi-line cell array 8 9maintainers: 10 - Test User <test@example.com> 11 12properties: 13 compatible: 14 const: example,test-value-ws-multiline 15 16required: 17 - compatible 18 19additionalProperties: false 20 21examples: 22 - | 23 foo@0 { 24 compatible = "example,test-value-ws-multiline"; 25 reg = < 0x0 0x4 26 0x8 0xc>; 27 }; 28