]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging:iio:dummy driver: Do not return error code in interrupt handler
authorLars-Peter Clausen <lars@metafoo.de>
Wed, 4 Jul 2012 16:09:00 +0000 (17:09 +0100)
committerJonathan Cameron <jic23@kernel.org>
Sun, 8 Jul 2012 19:02:27 +0000 (20:02 +0100)
The interrupt handler should only ever return one of the three irqreturn_t
constants and not an error code. Also make sure to always call
iio_trigger_notify_done before leaving the trigger handler.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/iio_simple_dummy_buffer.c

index b9e6093f6543e09677fb309d2bc2917a9c61b198..c0951f9f8a2fe399b5d7ac40d0adb4edb3e5913f 100644 (file)
@@ -52,7 +52,7 @@ static irqreturn_t iio_simple_dummy_trigger_h(int irq, void *p)
 
        data = kmalloc(indio_dev->scan_bytes, GFP_KERNEL);
        if (data == NULL)
-               return -ENOMEM;
+               goto done;
 
        if (!bitmap_empty(indio_dev->active_scan_mask, indio_dev->masklength)) {
                /*
@@ -91,6 +91,7 @@ static irqreturn_t iio_simple_dummy_trigger_h(int irq, void *p)
 
        kfree(data);
 
+done:
        /*
         * Tell the core we are done with this trigger and ready for the
         * next one.