summaryrefslogtreecommitdiff
path: root/drivers/staging/iio/trigger.h
diff options
context:
space:
mode:
authorJonathan Cameron <jic23@cam.ac.uk>2011-08-24 16:28:34 (GMT)
committerGreg Kroah-Hartman <gregkh@suse.de>2011-08-24 21:23:41 (GMT)
commit82db4249a2bd8b19c734e1ec4db0d6a56849b9a0 (patch)
treed99cd5fb5c49789a0ed7a5e5d01c6f0ea4e99f98 /drivers/staging/iio/trigger.h
parent5f9c035cae18be30b70efc88c3c88b34283db62f (diff)
downloadlinux-fsl-qoriq-82db4249a2bd8b19c734e1ec4db0d6a56849b9a0.tar.xz
staging:iio:triggers reorder module put and device put to ensure that the ops are still there if put results in device deletion.
Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/iio/trigger.h')
-rw-r--r--drivers/staging/iio/trigger.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/iio/trigger.h b/drivers/staging/iio/trigger.h
index 325e086..234c774 100644
--- a/drivers/staging/iio/trigger.h
+++ b/drivers/staging/iio/trigger.h
@@ -104,14 +104,14 @@ static inline struct iio_trigger *to_iio_trigger(struct device *d)
static inline void iio_put_trigger(struct iio_trigger *trig)
{
- put_device(&trig->dev);
module_put(trig->ops->owner);
+ put_device(&trig->dev);
};
static inline void iio_get_trigger(struct iio_trigger *trig)
{
- __module_get(trig->ops->owner);
get_device(&trig->dev);
+ __module_get(trig->ops->owner);
};
/**