aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c
diff options
context:
space:
mode:
authorCharles Keepax <ckeepax@opensource.wolfsonmicro.com>2015-04-16 08:05:19 -0400
committerWolfram Sang <wsa@the-dreams.de>2015-04-23 13:35:31 -0400
commit6ada5c1e1b077ab98fc144d7ac132b4dcc0148ec (patch)
treedc8914516b2813a750126056b81731a01bd7a3d5 /drivers/i2c
parent9ef8a0bee93606afb1dd111ccc1d467f261099cc (diff)
i2c: Mark adapter devices with pm_runtime_no_callbacks
Commit 523c5b89640e ("i2c: Remove support for legacy PM") removed the PM ops from the bus type, which causes the pm operations on the s3c2410 adapter device to fail (-ENOSUPP in rpm_callback). The adapter device doesn't get bound to a driver and as such can't have its own pm_runtime callbacks. Previously this was fine as the bus callbacks would have been used, but now this can cause devices which use PM runtime and are attached over I2C to fail to resume. This commit fixes this issue by marking all adapter devices with pm_runtime_no_callbacks, since they can't have any. Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Acked-by: Beata Michalska <b.michalska@samsung.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de> Fixes: 523c5b89640e Cc: stable@kernel.org
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/i2c-core.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c
index 098f698fe8f4..987c124432c5 100644
--- a/drivers/i2c/i2c-core.c
+++ b/drivers/i2c/i2c-core.c
@@ -1413,6 +1413,8 @@ static int i2c_register_adapter(struct i2c_adapter *adap)
1413 1413
1414 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name); 1414 dev_dbg(&adap->dev, "adapter [%s] registered\n", adap->name);
1415 1415
1416 pm_runtime_no_callbacks(&adap->dev);
1417
1416#ifdef CONFIG_I2C_COMPAT 1418#ifdef CONFIG_I2C_COMPAT
1417 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev, 1419 res = class_compat_create_link(i2c_adapter_compat_class, &adap->dev,
1418 adap->dev.parent); 1420 adap->dev.parent);