summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Wilson <evan@oliodevices.com>2016-02-10 11:39:12 -0800
committerEvan Wilson <evan@oliodevices.com>2016-02-10 11:39:12 -0800
commitd3648993f6f8e604a328a34c36f39178e4b9875f (patch)
tree584c96d590e8229f59c4ca4a33ffb8e870a527b5
parent3e132f58664314027b4dae9650d3bee06b06519d (diff)
downloadolio-linux-3.10-d3648993f6f8e604a328a34c36f39178e4b9875f.tar.xz
olio-linux-3.10-d3648993f6f8e604a328a34c36f39178e4b9875f.zip
Removing a log line that can case a fatal kernel crash
Change-Id: I9e8d617a8b0ebef54243b0ef4fb53158080e4c19
-rw-r--r--drivers/iio/imu/st_lsm6ds3/st_lsm6ds3_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/imu/st_lsm6ds3/st_lsm6ds3_core.c b/drivers/iio/imu/st_lsm6ds3/st_lsm6ds3_core.c
index 96cd843b55f..68e5df1de3f 100644
--- a/drivers/iio/imu/st_lsm6ds3/st_lsm6ds3_core.c
+++ b/drivers/iio/imu/st_lsm6ds3/st_lsm6ds3_core.c
@@ -2166,7 +2166,7 @@ static int check_wai(struct lsm6ds3_data *cdata) {
get_monotonic_boottime(&ts);
current_time = ts.tv_sec;
- dev_err(cdata->dev, "Last timestamp delta: %d \n", current_time-cdata->irq_timestamp);
+ //dev_err(cdata->dev, "Last timestamp delta: %d \n", current_time-cdata->irq_timestamp);
if(current_time-cdata->irq_timestamp > 15/*minutes*/*60) {
return st_lsm6ds3_reset(cdata, true);
}