iio: temperature: mcp9600: Fix temperature reading for negative values
authorDimitri Fedrau <dima.fedrau@gmail.com>
Wed, 24 Apr 2024 18:59:10 +0000 (20:59 +0200)
committerJonathan Cameron <jonathan.cameron@huawei.com>
Fri, 3 May 2024 10:48:56 +0000 (11:48 +0100)
commit827dca3129708a8465bde90c86c2e3c38e62dd4f
tree04274c6c1e843e6b07de683cacc3dc405931d2ac
parent51fafb3cd7fcf4f4682693b4d2883e2a5bfffe33
iio: temperature: mcp9600: Fix temperature reading for negative values

Temperature is stored as 16bit value in two's complement format. Current
implementation ignores the sign bit. Make it aware of the sign bit by
using sign_extend32.

Fixes: 3f6b9598b6df ("iio: temperature: Add MCP9600 thermocouple EMF converter")
Signed-off-by: Dimitri Fedrau <dima.fedrau@gmail.com>
Reviewed-by: Marcelo Schmitt <marcelo.schmitt1@gmail.com>
Tested-by: Andrew Hepp <andrew.hepp@ahepp.dev>
Link: https://lore.kernel.org/r/20240424185913.1177127-1-dima.fedrau@gmail.com
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/temperature/mcp9600.c