diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-09-30 03:46:43 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-09-30 03:46:43 +0200 |
commit | d0a76bbfe920e056e761bfcb77f3b95bd3bce98f (patch) | |
tree | 8e075735a5d3c1754861344d632336374058f04e /drivers | |
parent | 9f827d8099e76a4a2fb99faa88ee7859459f2360 (diff) |
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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/iio/iio_dummy_evgen.c | 2 |
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 86d8447ac08f..9e83f348df51 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) |