yamllint: indentation: fix dts/bindings/

Fix the YAML files indentation for files in dts/bindings/.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
This commit is contained in:
Fabio Baltieri 2023-01-03 19:21:25 +00:00 committed by Carles Cufí
commit eb0a524972
913 changed files with 14009 additions and 14009 deletions

View file

@ -3,92 +3,92 @@
include: [pm.yaml]
properties:
status:
type: string
description: indicates the operational status of a device
enum:
- "ok" # Deprecated form
- "okay"
- "disabled"
- "reserved"
- "fail"
- "fail-sss"
status:
type: string
description: indicates the operational status of a device
enum:
- "ok" # Deprecated form
- "okay"
- "disabled"
- "reserved"
- "fail"
- "fail-sss"
compatible:
type: string-array
required: true
description: compatible strings
compatible:
type: string-array
required: true
description: compatible strings
reg:
type: array
description: register space
reg:
type: array
description: register space
reg-names:
type: string-array
description: name of each register space
reg-names:
type: string-array
description: name of each register space
interrupts:
type: array
description: interrupts for device
interrupts:
type: array
description: interrupts for device
# Does not follow the 'type: phandle-array' scheme, but gets type-checked
# by the code. Declare it here just so that other bindings can make it
# 'required: true' easily if they want to.
interrupts-extended:
type: compound
description: extended interrupt specifier for device
# Does not follow the 'type: phandle-array' scheme, but gets type-checked
# by the code. Declare it here just so that other bindings can make it
# 'required: true' easily if they want to.
interrupts-extended:
type: compound
description: extended interrupt specifier for device
interrupt-names:
type: string-array
description: name of each interrupt
interrupt-names:
type: string-array
description: name of each interrupt
interrupt-parent:
type: phandle
description: phandle to interrupt controller node
interrupt-parent:
type: phandle
description: phandle to interrupt controller node
label:
type: string
deprecated: true
description: |
Human readable string describing the device (used as device_get_binding() argument)
label:
type: string
deprecated: true
description: |
Human readable string describing the device (used as device_get_binding() argument)
clocks:
type: phandle-array
description: Clock gate information
clocks:
type: phandle-array
description: Clock gate information
clock-names:
type: string-array
description: name of each clock
clock-names:
type: string-array
description: name of each clock
"#address-cells":
type: int
description: number of address cells in reg property
"#address-cells":
type: int
description: number of address cells in reg property
"#size-cells":
type: int
description: number of size cells in reg property
"#size-cells":
type: int
description: number of size cells in reg property
dmas:
type: phandle-array
description: DMA channels specifiers
dmas:
type: phandle-array
description: DMA channels specifiers
dma-names:
type: string-array
description: Provided names of DMA channel specifiers
dma-names:
type: string-array
description: Provided names of DMA channel specifiers
io-channels:
type: phandle-array
description: IO channels specifiers
io-channels:
type: phandle-array
description: IO channels specifiers
io-channel-names:
type: string-array
description: Provided names of IO channel specifiers
io-channel-names:
type: string-array
description: Provided names of IO channel specifiers
mboxes:
type: phandle-array
description: mailbox / IPM channels specifiers
specifier-space: mbox
mboxes:
type: phandle-array
description: mailbox / IPM channels specifiers
specifier-space: mbox
mbox-names:
type: string-array
description: Provided names of mailbox / IPM channel specifiers
mbox-names:
type: string-array
description: Provided names of mailbox / IPM channel specifiers

View file

@ -4,25 +4,25 @@
# Properties for Power Management (PM)
properties:
wakeup-source:
required: false
type: boolean
description: |
Property to identify that a device can be used as wake up source.
wakeup-source:
required: false
type: boolean
description: |
Property to identify that a device can be used as wake up source.
When this property is provided a specific flag is set into the
device that tells the system that the device is capable of
wake up the system.
When this property is provided a specific flag is set into the
device that tells the system that the device is capable of
wake up the system.
Wake up capable devices are disabled (interruptions will not wake up
the system) by default but they can be enabled at runtime if necessary.
Wake up capable devices are disabled (interruptions will not wake up
the system) by default but they can be enabled at runtime if necessary.
power-domain:
required: false
type: phandle
description: |
power-domain:
required: false
type: phandle
description: |
Power domain the device belongs to.
Power domain the device belongs to.
The device will be notified when the power domain it belongs to is either
suspended or resumed.
The device will be notified when the power domain it belongs to is either
suspended or resumed.

View file

@ -4,30 +4,30 @@
# Properties for nodes with controllable power supplies.
properties:
supply-gpios:
type: phandle-array
required: false
description: |
GPIO specifier that controls power to the device.
supply-gpios:
type: phandle-array
required: false
description: |
GPIO specifier that controls power to the device.
This property should be provided when the device has a dedicated
switch that controls power to the device. The supply state is
entirely the responsibility of the device driver.
This property should be provided when the device has a dedicated
switch that controls power to the device. The supply state is
entirely the responsibility of the device driver.
Contrast with vin-supply.
Contrast with vin-supply.
vin-supply:
type: phandle
required: false
description: |
Reference to the regulator that controls power to the device.
The referenced devicetree node must have a regulator compatible.
vin-supply:
type: phandle
required: false
description: |
Reference to the regulator that controls power to the device.
The referenced devicetree node must have a regulator compatible.
This property should be provided when device power is supplied
by a shared regulator. The supply state is dependent on the
request status of all devices fed by the regulator.
This property should be provided when device power is supplied
by a shared regulator. The supply state is dependent on the
request status of all devices fed by the regulator.
Contrast with supply-gpios. If both properties are provided
then the regulator must be requested before the supply GPIOS is
set to an active state, and the supply GPIOS must be set to an
inactive state before releasing the regulator.
Contrast with supply-gpios. If both properties are provided
then the regulator must be requested before the supply GPIOS is
set to an active state, and the supply GPIOS must be set to an
inactive state before releasing the regulator.