staging:iio:adc:ad7314 remove unmatched unregister of event line.
Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
cda0b2af52
commit
6f3ca9e3d6
|
@ -6,16 +6,11 @@
|
||||||
* Licensed under the GPL-2 or later.
|
* Licensed under the GPL-2 or later.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/interrupt.h>
|
|
||||||
#include <linux/gpio.h>
|
|
||||||
#include <linux/workqueue.h>
|
|
||||||
#include <linux/device.h>
|
#include <linux/device.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/sysfs.h>
|
#include <linux/sysfs.h>
|
||||||
#include <linux/list.h>
|
|
||||||
#include <linux/spi/spi.h>
|
#include <linux/spi/spi.h>
|
||||||
#include <linux/rtc.h>
|
|
||||||
|
|
||||||
#include "../iio.h"
|
#include "../iio.h"
|
||||||
#include "../sysfs.h"
|
#include "../sysfs.h"
|
||||||
|
@ -262,8 +257,6 @@ static int __devexit ad7314_remove(struct spi_device *spi_dev)
|
||||||
struct iio_dev *indio_dev = chip->indio_dev;
|
struct iio_dev *indio_dev = chip->indio_dev;
|
||||||
|
|
||||||
dev_set_drvdata(&spi_dev->dev, NULL);
|
dev_set_drvdata(&spi_dev->dev, NULL);
|
||||||
if (spi_dev->irq)
|
|
||||||
iio_unregister_interrupt_line(indio_dev, 0);
|
|
||||||
iio_device_unregister(indio_dev);
|
iio_device_unregister(indio_dev);
|
||||||
iio_free_device(chip->indio_dev);
|
iio_free_device(chip->indio_dev);
|
||||||
kfree(chip);
|
kfree(chip);
|
||||||
|
|
Loading…
Reference in New Issue