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

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
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -350,13 +350,11 @@ static int i2c_device_probe(struct device *dev)
		return -ENODEV;

	if (client->flags & I2C_CLIENT_WAKE) {
		int wakeirq = -ENOENT;
		int wakeirq;

		if (dev->of_node) {
		wakeirq = of_irq_get_byname(dev->of_node, "wakeup");
		if (wakeirq == -EPROBE_DEFER)
			return wakeirq;
		}

		device_init_wakeup(&client->dev, true);