mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-01 03:05:47 +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>
18 lines
444 B
YAML
18 lines
444 B
YAML
# Copyright (c) 2018, Linaro Limited
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
description: GPIO KEYS parent node
|
|
|
|
compatible: "gpio-keys"
|
|
|
|
child-binding:
|
|
description: GPIO KEYS child node
|
|
properties:
|
|
gpios:
|
|
type: phandle-array
|
|
required: true
|
|
label:
|
|
required: true
|
|
type: string
|
|
description: Human readable string describing the device (used as device_get_binding() argument)
|