brintos

brintos / linux-shallow public Read only

0
0
Text · 727 B · 7ccf0cd Raw
44 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/power/supply/tps65217-charger.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: TPS65217 Charger8 9maintainers:10  - Sebastian Reichel <sre@kernel.org>11 12allOf:13  - $ref: power-supply.yaml#14 15properties:16  compatible:17    const: ti,tps65217-charger18 19  interrupts:20    minItems: 221    maxItems: 222 23  interrupt-names:24    items:25      - const: USB26      - const: AC27 28required:29  - compatible30  - interrupts31  - interrupt-names32 33additionalProperties: false34 35examples:36  - |37    pmic {38      charger {39        compatible = "ti,tps65217-charger";40        interrupts = <0>, <1>;41        interrupt-names = "USB", "AC";42      };43    };44