Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: power/supply: Update TPS65217 properties

Add interrupt specifiers for USB and AC charger input. Interrupt numbers
are from the datasheet.
Fix wrong property for compatible string.

Signed-off-by: Milo Kim <woogyom.kim@gmail.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>

authored by

Milo Kim and committed by
Tony Lindgren
81d7358d be53e38f

+6 -1
+6 -1
Documentation/devicetree/bindings/power/supply/tps65217_charger.txt
··· 2 2 3 3 Required Properties: 4 4 -compatible: "ti,tps65217-charger" 5 + -interrupts: TPS65217 interrupt numbers for the AC and USB charger input change. 6 + Should be <0> for the USB charger and <1> for the AC adapter. 7 + -interrupt-names: Should be "USB" and "AC" 5 8 6 9 This node is a subnode of the tps65217 PMIC. 7 10 8 11 Example: 9 12 10 13 tps65217-charger { 11 - compatible = "ti,tps65090-charger"; 14 + compatible = "ti,tps65217-charger"; 15 + interrupts = <0>, <1>; 16 + interrupt-names = "USB", "AC"; 12 17 };