Skip to content

Commit

Permalink
i2c: nomadik: Use devm_clk_get_enabled()
Browse files Browse the repository at this point in the history
[ Upstream commit 9c7174d ]

Replace the pair of functions, devm_clk_get() and
clk_prepare_enable(), with a single function
devm_clk_get_enabled().

Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Stable-dep-of: 05f933d ("i2c: nomadik: Remove a useless call in the remove function")
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
Andi Shyti authored and gregkh committed Aug 3, 2023
1 parent b601402 commit fc491da
Showing 1 changed file with 3 additions and 15 deletions.
18 changes: 3 additions & 15 deletions drivers/i2c/busses/i2c-nomadik.c
Original file line number Diff line number Diff line change
Expand Up @@ -1005,18 +1005,12 @@ static int nmk_i2c_probe(struct amba_device *adev, const struct amba_id *id)
return ret;
}

dev->clk = devm_clk_get(&adev->dev, NULL);
dev->clk = devm_clk_get_enabled(&adev->dev, NULL);
if (IS_ERR(dev->clk)) {
dev_err(&adev->dev, "could not get i2c clock\n");
dev_err(&adev->dev, "could enable i2c clock\n");
return PTR_ERR(dev->clk);
}

ret = clk_prepare_enable(dev->clk);
if (ret) {
dev_err(&adev->dev, "can't prepare_enable clock\n");
return ret;
}

init_hw(dev);

adap = &dev->adap;
Expand All @@ -1037,16 +1031,11 @@ static int nmk_i2c_probe(struct amba_device *adev, const struct amba_id *id)

ret = i2c_add_adapter(adap);
if (ret)
goto err_no_adap;
return ret;

pm_runtime_put(&adev->dev);

return 0;

err_no_adap:
clk_disable_unprepare(dev->clk);

return ret;
}

static void nmk_i2c_remove(struct amba_device *adev)
Expand All @@ -1060,7 +1049,6 @@ static void nmk_i2c_remove(struct amba_device *adev)
clear_all_interrupts(dev);
/* disable the controller */
i2c_clr_bit(dev->virtbase + I2C_CR, I2C_CR_PE);
clk_disable_unprepare(dev->clk);
release_mem_region(res->start, resource_size(res));
}

Expand Down

0 comments on commit fc491da

Please sign in to comment.