b9240a3cbc
With https://github.com/zephyrproject-rtos/zephyr/pull/20185, multi-line descriptions will be formatted nicely, but using '>' breaks it, because it removes internal newlines (including between paragraphs). See https://yaml-multiline.info/. Replace 'description: >' with 'description: |' to encourage '|'. That'll prevent '>' from getting copied around and messing up long descriptions. This will lead to some extra newlines in the output, but it's fine. Line-wrapping messes up any manual formatting. The replacement was done with $ git ls-files 'dts/bindings/*.yaml' | \ xargs sed -i 's/description:\s*>/description: |/' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
21 lines
399 B
YAML
21 lines
399 B
YAML
# Copyright (c) 2019 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
title: MICROCHIP I2C
|
|
|
|
description: |
|
|
This binding gives a base representation for I2C/SMB controller for Microchip
|
|
|
|
compatible: "microchip,xec-i2c"
|
|
|
|
include: i2c-controller.yaml
|
|
|
|
properties:
|
|
reg:
|
|
required: true
|
|
|
|
port_sel:
|
|
type: int
|
|
description: soc block mapping to pin
|
|
required: true
|