blob: 48d654e521144ee1d128f8484cb75b3f3beb32f0 [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/hwmon/nxp,mc34vr500.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: NXP MC34VR500 hwmon sensor
8
9maintainers:
10 - Mario Kicherer <dev@kicherer.org>
11
12properties:
13 compatible:
14 enum:
15 - nxp,mc34vr500
16
17 reg:
18 maxItems: 1
19
20required:
21 - compatible
22 - reg
23
24additionalProperties: false
25
26examples:
27 - |
28 i2c {
29 #address-cells = <1>;
30 #size-cells = <0>;
31
32 pmic@8 {
33 compatible = "nxp,mc34vr500";
34 reg = <0x08>;
35 };
36 };