summaryrefslogtreecommitdiffstats
path: root/libsensors/cm36651_proximity.c
diff options
context:
space:
mode:
authorDheeraj CVR <cvr.dheeraj@gmail.com>2015-06-11 16:44:25 +0400
committerforkbomb <keepcalm444@gmail.com>2015-11-25 08:34:55 +1100
commitfc862f3a4c433c67605f12ad2d9addc6fc1bc831 (patch)
treea753c448934c1ef459b302d5d60d46a07f694d6b /libsensors/cm36651_proximity.c
parentea6c7d9c8609022e19200d888f449139139d9173 (diff)
downloaddevice_samsung_i9300-fc862f3a4c433c67605f12ad2d9addc6fc1bc831.tar.gz
device_samsung_i9300-fc862f3a4c433c67605f12ad2d9addc6fc1bc831.tar.bz2
device_samsung_i9300-fc862f3a4c433c67605f12ad2d9addc6fc1bc831.zip
libsensors: switch to portable typedefs to match callbacks
Using a strict basetype only coding style is not a good idea especially when we are dealing with callbacks which use portable typedef like int64_t. This kind of coding style would most likely end up in overflows at various places especially when dealing with timestamps and sensor delays which are caused when typecasting datatypes of different size. Switch to portable typedefs and get rid of "long". Change-Id: I75b9cace7602345dba9095f046292e6d4db07df4
Diffstat (limited to 'libsensors/cm36651_proximity.c')
-rw-r--r--libsensors/cm36651_proximity.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsensors/cm36651_proximity.c b/libsensors/cm36651_proximity.c
index b102f9a..6529543 100644
--- a/libsensors/cm36651_proximity.c
+++ b/libsensors/cm36651_proximity.c
@@ -147,9 +147,9 @@ int cm36651_proximity_deactivate(struct smdk4x12_sensors_handlers *handlers)
return 0;
}
-int cm36651_proximity_set_delay(struct smdk4x12_sensors_handlers *handlers, long int delay)
+int cm36651_proximity_set_delay(struct smdk4x12_sensors_handlers *handlers, int64_t delay)
{
- ALOGD("%s(%p, %ld)", __func__, handlers, delay);
+ ALOGD("%s(%p, %" PRId64 ")", __func__, handlers, delay);
return 0;
}