diff options
Diffstat (limited to 'libsensors')
-rw-r--r-- | libsensors/AccelSensor.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libsensors/AccelSensor.cpp b/libsensors/AccelSensor.cpp index cb205e3..060d26d 100644 --- a/libsensors/AccelSensor.cpp +++ b/libsensors/AccelSensor.cpp @@ -24,7 +24,6 @@ #include <cutils/log.h> #include <string.h> - #include "AccelSensor.h" @@ -115,7 +114,7 @@ int AccelSensor::setDelay(int32_t handle, int64_t ns) ns = 10000000; // Minimum on stock } - strcpy(&input_sysfs_path[input_sysfs_path_len], "delay"); + strcpy(&input_sysfs_path[input_sysfs_path_len], "poll_delay"); fd = open(input_sysfs_path, O_RDWR); if (fd >= 0) { char buf[80]; |