mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 03:25:22 +00:00
The value of a label property isn't really the name of an API. It's the name of a device, as passed to device_get_binding(). Let's just say that directly so people know what this means in practice instead of what's currently used as the description, which is harder to understand and not really accurate. Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
31 lines
803 B
YAML
31 lines
803 B
YAML
description: Flash partitions parent node
|
|
|
|
compatible: "fixed-partitions"
|
|
|
|
properties:
|
|
"#address-cells":
|
|
type: int
|
|
required: false
|
|
description: number of address cells in reg property
|
|
|
|
"#size-cells":
|
|
type: int
|
|
required: false
|
|
description: number of size cells in reg property
|
|
|
|
child-binding:
|
|
description: Flash partition child node
|
|
properties:
|
|
label:
|
|
type: string
|
|
required: false
|
|
description: Human readable string describing the device (used as device_get_binding() argument)
|
|
read-only:
|
|
type: boolean
|
|
required: false
|
|
description: if the partition is read-only or not
|
|
reg:
|
|
type: array
|
|
description: register space
|
|
required: true
|