45 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/hwmon/lltc,ltc4151.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: LTC4151 High Voltage I2C Current and Voltage Monitor8 9maintainers:10 - Krzysztof Kozlowski <krzk@kernel.org>11 12properties:13 compatible:14 const: lltc,ltc415115 16 reg:17 maxItems: 118 19 shunt-resistor-micro-ohms:20 description:21 Shunt resistor value in micro-Ohms22 default: 100023 24required:25 - compatible26 - reg27 28allOf:29 - $ref: hwmon-common.yaml#30 31unevaluatedProperties: false32 33examples:34 - |35 i2c {36 #address-cells = <1>;37 #size-cells = <0>;38 39 sensor@6e {40 compatible = "lltc,ltc4151";41 reg = <0x6e>;42 shunt-resistor-micro-ohms = <1500>;43 };44 };45