Merge 4.6-rc3 into staging-next
This resolves a lot of merge issues with PAGE_CACHE_* changes, and an iio driver merge issue. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -769,7 +769,7 @@ static void apds9960_read_gesture_fifo(struct apds9960_data *data)
|
||||
mutex_lock(&data->lock);
|
||||
data->gesture_mode_running = 1;
|
||||
|
||||
while (cnt-- || (cnt = apds9660_fifo_is_empty(data) > 0)) {
|
||||
while (cnt || (cnt = apds9660_fifo_is_empty(data) > 0)) {
|
||||
ret = regmap_bulk_read(data->regmap, APDS9960_REG_GFIFO_BASE,
|
||||
&data->buffer, 4);
|
||||
|
||||
@@ -777,6 +777,7 @@ static void apds9960_read_gesture_fifo(struct apds9960_data *data)
|
||||
goto err_read;
|
||||
|
||||
iio_push_to_buffers(data->indio_dev, data->buffer);
|
||||
cnt--;
|
||||
}
|
||||
|
||||
err_read:
|
||||
|
Reference in New Issue
Block a user