Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 941ed3b5 authored by David Fries's avatar David Fries Committed by Linus Torvalds
Browse files

W1: w1_therm.c ds18b20 decode freezing temperatures correctly



Correct the decoding of negative C temperatures.  The code did a binary OR
of two bytes to make a 16 bit value, but assignd it to an integer.  This
caused the value to not be sign extended and to loose that it was a
negative number in the assignment.

Before the patch (in my freezer),
	w1_slave
	ed fe 4b 46 7f ff 03 10 e4 : crc=e4 YES
	ed fe 4b 46 7f ff 03 10 e4 t=4078
With the patch,
	e3 fe 4b 46 7f ff 0d 10 81 : crc=81 YES
	e3 fe 4b 46 7f ff 0d 10 81 t=-17

Signed-off-by: default avatarDavid Fries <david@fries.net>
Acked-by: default avatarEvgeniy Polyakov <johnpol@2ka.mipt.ru>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent d384e35a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -112,7 +112,7 @@ static struct w1_therm_family_converter w1_therm_families[] = {


static inline int w1_DS18B20_convert_temp(u8 rom[9])
static inline int w1_DS18B20_convert_temp(u8 rom[9])
{
{
	int t = (rom[1] << 8) | rom[0];
	s16 t = (rom[1] << 8) | rom[0];
	t /= 16;
	t /= 16;
	return t;
	return t;
}
}