From: Julia Lawall Date: Sun, 11 Mar 2012 23:06:03 +0000 (-0700) Subject: Input: hp680_ts_input - ensure arguments to request_irq and free_irq are compatible X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b51425becfe127e0c17a8501ffa079b37241ed11;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git Input: hp680_ts_input - ensure arguments to request_irq and free_irq are compatible Change 0 to NULL in the last argument of request_irq, since the argument should have pointer type and so that the last argument of request_irq syntactically matches the second argument of the later call to free_irq. Signed-off-by: Julia Lawall Signed-off-by: Dmitry Torokhov --- diff --git a/drivers/input/touchscreen/hp680_ts_input.c b/drivers/input/touchscreen/hp680_ts_input.c index 639a6044183d..85cf9bee8018 100644 --- a/drivers/input/touchscreen/hp680_ts_input.c +++ b/drivers/input/touchscreen/hp680_ts_input.c @@ -93,7 +93,7 @@ static int __init hp680_ts_init(void) hp680_ts_dev->phys = "hp680_ts/input0"; if (request_irq(HP680_TS_IRQ, hp680_ts_interrupt, - 0, MODNAME, 0) < 0) { + 0, MODNAME, NULL) < 0) { printk(KERN_ERR "hp680_touchscreen.c: Can't allocate irq %d\n", HP680_TS_IRQ); err = -EBUSY;