Skip to content

Commit

Permalink
iio: meter: ade7758: 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>
Acked-by: Lars-Peter Clausen <lars@metafoo.de>
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 b07e3b3 commit 0495081
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/iio/meter/ade7758_trigger.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ int ade7758_probe_trigger(struct iio_dev *indio_dev)
ret = iio_trigger_register(st->trig);

/* select default trigger */
indio_dev->trig = st->trig;
indio_dev->trig = iio_trigger_get(st->trig);
if (ret)
goto error_free_irq;

Expand Down

0 comments on commit 0495081

Please sign in to comment.