mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
i2c: fix wakeup irq parsing
This patch fixes obvious copy-past error in wake up irq parsing
code which leads to the fact that dev_pm_set_wake_irq() will
be called with wrong IRQ number when "wakeup" IRQ is not
defined in DT.
Fixes: 3fffd12839
("i2c: allow specifying separate wakeup interrupt in device tree")
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Cc: <stable@vger.kernel.org> # v4.3
This commit is contained in:
parent
d0fe5258e6
commit
c18fba2306
@ -715,7 +715,7 @@ static int i2c_device_probe(struct device *dev)
|
||||
if (wakeirq > 0 && wakeirq != client->irq)
|
||||
status = dev_pm_set_dedicated_wake_irq(dev, wakeirq);
|
||||
else if (client->irq > 0)
|
||||
status = dev_pm_set_wake_irq(dev, wakeirq);
|
||||
status = dev_pm_set_wake_irq(dev, client->irq);
|
||||
else
|
||||
status = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user