summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-09-30 01:46:43 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-09-30 01:46:43 (GMT)
commitd0a76bbfe920e056e761bfcb77f3b95bd3bce98f (patch)
tree8e075735a5d3c1754861344d632336374058f04e
parent9f827d8099e76a4a2fb99faa88ee7859459f2360 (diff)
downloadlinux-d0a76bbfe920e056e761bfcb77f3b95bd3bce98f.tar.xz
staging: iio: iio_dummy_evgen: handle_simple_irq() build fix
handle_simple_irq() has dropped the first parameter, so fix it up in the iio_dummy_evgen.c driver to prevent the build from breaking. Cc: Jonathan Cameron <jic23@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/iio/iio_dummy_evgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/iio/iio_dummy_evgen.c b/drivers/staging/iio/iio_dummy_evgen.c
index 86d8447..9e83f34 100644
--- a/drivers/staging/iio/iio_dummy_evgen.c
+++ b/drivers/staging/iio/iio_dummy_evgen.c
@@ -86,7 +86,7 @@ static void iio_dummy_work_handler(struct irq_work *work)
struct iio_dummy_handle_irq *irq_handler;
irq_handler = container_of(work, struct iio_dummy_handle_irq, work);
- handle_simple_irq(irq_handler->irq, irq_to_desc(irq_handler->irq));
+ handle_simple_irq(irq_to_desc(irq_handler->irq));
}
static int iio_dummy_evgen_create(void)