diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2018-04-29 20:41:04 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2018-05-08 23:19:02 +0200 |
commit | 77bade677c3c5616dfadfd21f0220fcddbfa4cbe (patch) | |
tree | be578503db19eafc5672eb441ee63c5443e0261d /drivers/i2c/busses/i2c-nomadik.c | |
parent | i2c: axxia: enable clock before calling clk_get_rate() (diff) | |
download | linux-77bade677c3c5616dfadfd21f0220fcddbfa4cbe.tar.xz linux-77bade677c3c5616dfadfd21f0220fcddbfa4cbe.zip |
i2c: busses: remove superfluous ignoring of children for RPM
These days, the I2C core ensures that the embedded adapter device
ignores the PM states of its children already. Because the adapter
device is an opaque logical device, there is no need for drivers to
repeat that again.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c/busses/i2c-nomadik.c')
-rw-r--r-- | drivers/i2c/busses/i2c-nomadik.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/i2c/busses/i2c-nomadik.c b/drivers/i2c/busses/i2c-nomadik.c index 49c7c0c91486..0ed5a41804dc 100644 --- a/drivers/i2c/busses/i2c-nomadik.c +++ b/drivers/i2c/busses/i2c-nomadik.c @@ -1012,8 +1012,6 @@ static int nmk_i2c_probe(struct amba_device *adev, const struct amba_id *id) goto err_no_mem; } - pm_suspend_ignore_children(&adev->dev, true); - dev->clk = devm_clk_get(&adev->dev, NULL); if (IS_ERR(dev->clk)) { dev_err(&adev->dev, "could not get i2c clock\n"); |