- Problem: Build break took place when building Light/Motion plugins.
- Cause: member variable name had been changed in uas_sensor_info_t.
- Solution: Backout the change.
Change-Id: Id8c10d798a28427451d81b16772603490f24dcd0
Signed-off-by: saerome.kim <saerome.kim@samsung.com>
retv_if(NULL == sensor_info, NULL);
sensor_info->status = info->status;
- sensor_info->timestamp = info->last_seen;
+ sensor_info->timestamp = info->timestamp;
sensor_info->accuracy = info->accuracy;
sensor_info->count = info->count;
for (i = 0; i < info->count; i++) {
/* Sensor information structure */
typedef struct {
unsigned int status; /**< Sensor status */
- unsigned long long last_seen; /**< Last seen time */
+ unsigned long long timestamp; /**< Last seen time */
int accuracy; /**< Accuracy */
int count; /**< How many sensor data are there */
double *values; /**< Sensor data */