Fix all hyphens errors detected by yamllint: yamllint -f parsable -c .yamllint $( find -regex '.*\.y[a]*ml' ) | \ grep '(comments)' Default config would be to require two spaces after the start of the comment, proposing to keep it on 1, inline with the Linux binding config, that is: ``` - comments: - min-spaces-from-content: 1 ``` Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
18 lines
487 B
YAML
18 lines
487 B
YAML
# Copyright (c) 2020, DENX Software Engineering GmbH
|
|
# Lukasz Majewski <lukma@denx.de>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
child-binding:
|
|
description: Fixed link ethernet node
|
|
properties:
|
|
speed:
|
|
type: int
|
|
required: true
|
|
description: The speed of fixed link
|
|
enum:
|
|
- 100
|
|
- 10
|
|
full-duplex:
|
|
type: boolean
|
|
description: The fixed link operates in full duplex mode
|