aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorGe Gao <ggao@invensense.com>2013-03-04 18:27:00 -0500
committerJonathan Cameron <jic23@kernel.org>2013-03-17 16:14:37 -0400
commit6c23811ecb24e077081d04c7af511d94746419ab (patch)
tree52f4fdb4f950c329d6b968d8e1ef5d5c68f7352f /drivers
parent039a9dce0d192196d40bd35d4bfebfbcade5d14e (diff)
using kfifo_in_spinlocked instead of separate code.
Signed-off-by: Ge Gao <ggao@invensense.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
index 331781ffbb15..7da0832f187b 100644
--- a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
+++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
@@ -105,9 +105,8 @@ irqreturn_t inv_mpu6050_irq_handler(int irq, void *p)
105 s64 timestamp; 105 s64 timestamp;
106 106
107 timestamp = iio_get_time_ns(); 107 timestamp = iio_get_time_ns();
108 spin_lock(&st->time_stamp_lock); 108 kfifo_in_spinlocked(&st->timestamps, &timestamp, 1,
109 kfifo_in(&st->timestamps, &timestamp, 1); 109 &st->time_stamp_lock);
110 spin_unlock(&st->time_stamp_lock);
111 110
112 return IRQ_WAKE_THREAD; 111 return IRQ_WAKE_THREAD;
113} 112}