Skip to content

Commit

Permalink
iio: gyro: itg3200: Fix indio_dev->trig assignment
Browse files Browse the repository at this point in the history
This can result in wrong reference count for trigger device, call
iio_trigger_get to increment reference.
Refer to http://www.spinics.net/lists/linux-iio/msg13669.html for discussion
with Jonathan.

Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Cc: Stable@vger.kernel.org
  • Loading branch information
Srinivas Pandruvada authored and Jonathan Cameron committed Aug 25, 2014
1 parent f0e84ac commit 0b4dce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/iio/gyro/itg3200_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ int itg3200_probe_trigger(struct iio_dev *indio_dev)
goto error_free_irq;

/* select default trigger */
indio_dev->trig = st->trig;
indio_dev->trig = iio_trigger_get(st->trig);

return 0;

Expand Down

0 comments on commit 0b4dce2

Please sign in to comment.