summaryrefslogtreecommitdiffstats
path: root/drivers/staging/iio/meter/ade7854.c
diff options
context:
space:
mode:
authorJonathan Cameron2011-10-14 15:46:58 +0200
committerGreg Kroah-Hartman2011-10-18 00:34:53 +0200
commitd2fffd6c2fd60fe9ab63ef30758d9d43a5057549 (patch)
tree7c0178872f67c15707cd3c89f82352ba90da1d09 /drivers/staging/iio/meter/ade7854.c
parentiio: adc: remove ADT75 driver - hwmon/lm75 will take over ADT75 support (diff)
downloadkernel-qcow2-linux-d2fffd6c2fd60fe9ab63ef30758d9d43a5057549.tar.gz
kernel-qcow2-linux-d2fffd6c2fd60fe9ab63ef30758d9d43a5057549.tar.xz
kernel-qcow2-linux-d2fffd6c2fd60fe9ab63ef30758d9d43a5057549.zip
staging:iio: fix removal path to allow correct freeing.
Fix a dumb lack of consideration of the effect of combining the iio_device_unregister and iio_free_device calls into one. There is no valid place to free some of the sysfs array elements. Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/iio/meter/ade7854.c')
-rw-r--r--drivers/staging/iio/meter/ade7854.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/iio/meter/ade7854.c b/drivers/staging/iio/meter/ade7854.c
index d438c038e006..49c01c5c1b59 100644
--- a/drivers/staging/iio/meter/ade7854.c
+++ b/drivers/staging/iio/meter/ade7854.c
@@ -590,6 +590,7 @@ EXPORT_SYMBOL(ade7854_probe);
int ade7854_remove(struct iio_dev *indio_dev)
{
iio_device_unregister(indio_dev);
+ iio_free_device(indio_dev);
return 0;
}