Skip to content
Snippets Groups Projects
Commit fa1aaf9c authored by Marc-Oliver Westerburg's avatar Marc-Oliver Westerburg
Browse files

LM73: fix temperature sensor on SANTARO/SANTOKA

For SANTARO/SANTOKA the board temperature sensor was declared as
"national,lm75" in the device-tree resulting in the LM73 sensor
equipped on these system being treated as LM75 and therefore giving
wrong temperature read-outs.

This patch declares the temperature correctly as "national,lm73", which
results in proper temperature read-outs.

YT-348
parent 48d64013
No related branches found
No related tags found
1 merge request!349LM73: fix temperature sensor on SANTARO/SANTOKA
Pipeline #221776 passed with stage
in 25 seconds
......@@ -281,6 +281,8 @@ lvds0_out: endpoint {
};
&lm75 {
// SANTARO uses LM73 (not LM75)
compatible = "national,lm73";
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_lm75_2>;
interrupts = <28 0x4>;
......
......@@ -291,6 +291,8 @@ lvds0_out: endpoint {
};
&lm75 {
// SANTOKA uses LM73 (not LM75)
compatible = "national,lm73";
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_lm75_2>;
interrupts = <28 0x4>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment