dect
/
linux-2.6
Archived
13
0
Fork 0

staging:iio: hid-sensors Use iio_push_to_buffer

Consistently use iio_push_to_buffer instead of manually calling the buffers
store_to callback.

These crossed with Lars-Peter's patch set doing every other case.

Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Acked-by: srinivas pandruvada <srinivas.pandruvada@intel.com>
This commit is contained in:
Jonathan Cameron 2012-09-06 22:12:53 +01:00
parent 00176b360c
commit a0d7bf7dd1
4 changed files with 4 additions and 4 deletions

View File

@ -212,7 +212,7 @@ static void hid_sensor_push_data(struct iio_dev *indio_dev, u8 *data, int len)
datum_sz);
return;
}
buffer->access->store_to(buffer, (u8 *)data, timestamp);
iio_push_to_buffer(buffer, (u8 *)data, timestamp);
}
/* Callback handler to send event after all samples are received and captured */

View File

@ -212,7 +212,7 @@ static void hid_sensor_push_data(struct iio_dev *indio_dev, u8 *data, int len)
datum_sz);
return;
}
buffer->access->store_to(buffer, (u8 *)data, timestamp);
iio_push_to_buffer(buffer, (u8 *)data, timestamp);
}
/* Callback handler to send event after all samples are received and captured */

View File

@ -191,7 +191,7 @@ static void hid_sensor_push_data(struct iio_dev *indio_dev, u8 *data, int len)
datum_sz);
return;
}
buffer->access->store_to(buffer, (u8 *)data, timestamp);
iio_push_to_buffer(buffer, (u8 *)data, timestamp);
}
/* Callback handler to send event after all samples are received and captured */

View File

@ -213,7 +213,7 @@ static void hid_sensor_push_data(struct iio_dev *indio_dev, u8 *data, int len)
datum_sz);
return;
}
buffer->access->store_to(buffer, (u8 *)data, timestamp);
iio_push_to_buffer(buffer, (u8 *)data, timestamp);
}
/* Callback handler to send event after all samples are received and captured */