aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio
diff options
context:
space:
mode:
authorPascal Bouwmann <bouwmann@tau-tec.de>2019-08-29 07:29:41 +0200
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2019-09-08 13:11:50 +0100
commit6c59a962e081df6d8fe43325bbfabec57e0d4751 (patch)
tree05f619767a5e0f0d06dd6e09a0d4e8077eabacb0 /drivers/iio
parentiio: imu: st_lsm6dsx: forbid 0 sensor sensitivity (diff)
downloadlinux-dev-6c59a962e081df6d8fe43325bbfabec57e0d4751.tar.xz
linux-dev-6c59a962e081df6d8fe43325bbfabec57e0d4751.zip
iio: fix center temperature of bmc150-accel-core
The center temperature of the supported devices stored in the constant BMC150_ACCEL_TEMP_CENTER_VAL is not 24 degrees but 23 degrees. It seems that some datasheets were inconsistent on this value leading to the error. For most usecases will only make minor difference so not queued for stable. Signed-off-by: Pascal Bouwmann <bouwmann@tau-tec.de> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio')
-rw-r--r--drivers/iio/accel/bmc150-accel-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/accel/bmc150-accel-core.c b/drivers/iio/accel/bmc150-accel-core.c
index cf6c0e3a83d3..121b4e89f038 100644
--- a/drivers/iio/accel/bmc150-accel-core.c
+++ b/drivers/iio/accel/bmc150-accel-core.c
@@ -117,7 +117,7 @@
#define BMC150_ACCEL_SLEEP_1_SEC 0x0F
#define BMC150_ACCEL_REG_TEMP 0x08
-#define BMC150_ACCEL_TEMP_CENTER_VAL 24
+#define BMC150_ACCEL_TEMP_CENTER_VAL 23
#define BMC150_ACCEL_AXIS_TO_REG(axis) (BMC150_ACCEL_REG_XOUT_L + (axis * 2))
#define BMC150_AUTO_SUSPEND_DELAY_MS 2000