iio: pressure: st_pressure: fix drdy configuration for LPS22HB and LPS25H
authorLorenzo Bianconi <lorenzo.bianconi83@gmail.com>
Fri, 11 Aug 2017 19:44:13 +0000 (21:44 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 12 Aug 2017 12:46:32 +0000 (13:46 +0100)
Remove int2 configuration parameter for LPS22HB and LPS25H since
these devices export just int1 as data-ready line

Fixes: 931878405b86 (iio:pressure: Add support for LPS25H pressure sensor)
Fixes: e039e2f5b4da (iio:st_pressure:initial lps22hb sensor support)
Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@st.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/pressure/st_pressure_core.c

index aa61ec1..c84eea7 100644 (file)
@@ -390,7 +390,7 @@ static const struct st_sensor_settings st_press_sensors_settings[] = {
                .drdy_irq = {
                        .addr = 0x23,
                        .mask_int1 = 0x01,
-                       .mask_int2 = 0x10,
+                       .mask_int2 = 0x00,
                        .addr_ihl = 0x22,
                        .mask_ihl = 0x80,
                        .addr_od = 0x22,
@@ -449,7 +449,7 @@ static const struct st_sensor_settings st_press_sensors_settings[] = {
                .drdy_irq = {
                        .addr = 0x12,
                        .mask_int1 = 0x04,
-                       .mask_int2 = 0x08,
+                       .mask_int2 = 0x00,
                        .addr_ihl = 0x12,
                        .mask_ihl = 0x80,
                        .addr_od = 0x12,