Commit 3e99834c authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Wolfram Sang

i2c: Drop unneeded check for of_node

of_find_property() will return NULL if of_node is NULL,
thus of_irq_get_by_name() returns -EINVAL which we ignore,
so no need to double check.
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent f91b2ab0
...@@ -350,13 +350,11 @@ static int i2c_device_probe(struct device *dev) ...@@ -350,13 +350,11 @@ static int i2c_device_probe(struct device *dev)
return -ENODEV; return -ENODEV;
if (client->flags & I2C_CLIENT_WAKE) { if (client->flags & I2C_CLIENT_WAKE) {
int wakeirq = -ENOENT; int wakeirq;
if (dev->of_node) {
wakeirq = of_irq_get_byname(dev->of_node, "wakeup"); wakeirq = of_irq_get_byname(dev->of_node, "wakeup");
if (wakeirq == -EPROBE_DEFER) if (wakeirq == -EPROBE_DEFER)
return wakeirq; return wakeirq;
}
device_init_wakeup(&client->dev, true); device_init_wakeup(&client->dev, true);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment