gpio: msm-v1: Fix typo in function argument
irq_set_irq_wake() treats its second argument as a boolean. It is much easier to read code when constant booleans are either 0 or 1! This particular line of code distracted me somewhat when I was doing a bit of work in a code browser since it (spuriously) got me worried that I had misunderstood how irq_set_irq_wake() worked. Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org> Reviewed-by: Alexandre Courbot <acourbot@nvidia.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
e3a2e87893
commit
bd1dbc3b9d
|
@ -686,7 +686,7 @@ static int gpio_msm_v1_probe(struct platform_device *pdev)
|
|||
irq_set_chained_handler(irq1, msm_gpio_irq_handler);
|
||||
irq_set_chained_handler(irq2, msm_gpio_irq_handler);
|
||||
irq_set_irq_wake(irq1, 1);
|
||||
irq_set_irq_wake(irq2, 2);
|
||||
irq_set_irq_wake(irq2, 1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue