Commit dc260f50 authored by Zev Weiss's avatar Zev Weiss Committed by Andrew Jeffery

ARM: dts: aspeed: Add vendor prefixes to lm25066 compat strings

Due to the way i2c driver matching works (falling back to the driver's
id_table if of_match_table fails) this didn't actually cause any
misbehavior, but let's add the vendor prefixes so things actually work
the way they were intended to.
Signed-off-by: default avatarZev Weiss <zev@bewilderbeest.net>
Reviewed-by: default avatarConor Dooley <conor.dooley@microchip.com>
Signed-off-by: default avatarAndrew Jeffery <andrew@codeconstruct.com.au>
parent 24799718
...@@ -101,14 +101,14 @@ w83773g@4c { ...@@ -101,14 +101,14 @@ w83773g@4c {
/* IPB PMIC */ /* IPB PMIC */
lm25066@40 { lm25066@40 {
compatible = "lm25066"; compatible = "ti,lm25066";
reg = <0x40>; reg = <0x40>;
shunt-resistor-micro-ohms = <1000>; shunt-resistor-micro-ohms = <1000>;
}; };
/* 12VSB PMIC */ /* 12VSB PMIC */
lm25066@41 { lm25066@41 {
compatible = "lm25066"; compatible = "ti,lm25066";
reg = <0x41>; reg = <0x41>;
shunt-resistor-micro-ohms = <10000>; shunt-resistor-micro-ohms = <10000>;
}; };
......
...@@ -14,7 +14,7 @@ efuse##n { \ ...@@ -14,7 +14,7 @@ efuse##n { \
#define EFUSE(hexaddr, num) \ #define EFUSE(hexaddr, num) \
efuse@##hexaddr { \ efuse@##hexaddr { \
compatible = "lm25066"; \ compatible = "ti,lm25066"; \
reg = <0x##hexaddr>; \ reg = <0x##hexaddr>; \
shunt-resistor-micro-ohms = <675>; \ shunt-resistor-micro-ohms = <675>; \
regulators { \ regulators { \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment