i2c: Respect all error codes from dev_pm_domain_attach()
The limitation of being able to check only for -EPROBE_DEFER from dev_pm_domain_attach() has been removed. Hence let's respect all error codes and bail out accordingly. Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org> Acked-by: Wolfram Sang <wsa@the-dreams.de> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
88a9769e60
commit
e6a20b6cd2
|
@ -363,7 +363,7 @@ static int i2c_device_probe(struct device *dev)
|
||||||
goto err_clear_wakeup_irq;
|
goto err_clear_wakeup_irq;
|
||||||
|
|
||||||
status = dev_pm_domain_attach(&client->dev, true);
|
status = dev_pm_domain_attach(&client->dev, true);
|
||||||
if (status == -EPROBE_DEFER)
|
if (status)
|
||||||
goto err_clear_wakeup_irq;
|
goto err_clear_wakeup_irq;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue