realtek: tl-sg2008p: use correct i2c address for TPS23861
Address 0x30 is a "broadcast" address for the TPS23861. It should not be used by drivers, as all TPS23861 devices on the bus are supposed to respond. Change this to the correct address, 0x28. Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
This commit is contained in:
parent
9a7f17e11f
commit
f242f642bb
1 changed files with 2 additions and 2 deletions
|
@ -53,9 +53,9 @@
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
|
||||||
tps23861@30 {
|
tps23861@28 {
|
||||||
compatible = "ti,tps23861";
|
compatible = "ti,tps23861";
|
||||||
reg = <0x30>;
|
reg = <0x28>;
|
||||||
shunt-resistor-micro-ohms = <255000>;
|
shunt-resistor-micro-ohms = <255000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue