i2c: Mark adapter devices with pm_runtime_no_callbacks
authorCharles Keepax <ckeepax@opensource.wolfsonmicro.com>
Thu, 16 Apr 2015 12:05:19 +0000 (13:05 +0100)
committerWolfram Sang <wsa@the-dreams.de>
Thu, 23 Apr 2015 17:35:31 +0000 (19:35 +0200)
commit6ada5c1e1b077ab98fc144d7ac132b4dcc0148ec
treedc8914516b2813a750126056b81731a01bd7a3d5
parent9ef8a0bee93606afb1dd111ccc1d467f261099cc
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
drivers/i2c/i2c-core.c