This is a note to let you know that I've just added the patch titled iio: gyro: itg3200: Fix indio_dev->trig assignment to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: iio-gyro-itg3200-fix-indio_dev-trig-assignment.patch and it can be found in the queue-3.14 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 0b4dce2ee694a991ef38203ec5ff91a738518cb3 Mon Sep 17 00:00:00 2001 From: Srinivas Pandruvada <srinivas.pandruvada@xxxxxxxxxxxxxxx> Date: Fri, 22 Aug 2014 21:48:00 +0100 Subject: iio: gyro: itg3200: Fix indio_dev->trig assignment From: Srinivas Pandruvada <srinivas.pandruvada@xxxxxxxxxxxxxxx> commit 0b4dce2ee694a991ef38203ec5ff91a738518cb3 upstream. 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@xxxxxxxxxxxxxxx> Signed-off-by: Jonathan Cameron <jic23@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/iio/gyro/itg3200_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/iio/gyro/itg3200_buffer.c +++ b/drivers/iio/gyro/itg3200_buffer.c @@ -132,7 +132,7 @@ int itg3200_probe_trigger(struct iio_dev goto error_free_irq; /* select default trigger */ - indio_dev->trig = st->trig; + indio_dev->trig = iio_trigger_get(st->trig); return 0; Patches currently in stable-queue which might be from srinivas.pandruvada@xxxxxxxxxxxxxxx are queue-3.14/iio-hid_sensor_hub-fix-indio_dev-trig-assignment.patch queue-3.14/iio-meter-ade7758-fix-indio_dev-trig-assignment.patch queue-3.14/iio-trigger-modify-return-value-for-iio_trigger_get.patch queue-3.14/iio-adc-ad_sigma_delta-fix-indio_dev-trig-assignment.patch queue-3.14/iio-st_sensors-fix-indio_dev-trig-assignment.patch queue-3.14/iio-gyro-itg3200-fix-indio_dev-trig-assignment.patch queue-3.14/iio-inv_mpu6050-fix-indio_dev-trig-assignment.patch queue-3.14/iio-accel-bma180-fix-indio_dev-trig-assignment.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html