Use a single reset_control_reset() instead of assert/deasset couple in
order to make code cleaner a tad. Note that the reset_control_reset()
uses 1 microsecond delay instead of 2 that was used previously, but this
shouldn't matter. In addition don't ignore potential error of the reset.

Reviewed-by: Michał Mirosław <[email protected]>
Signed-off-by: Dmitry Osipenko <[email protected]>
---
 drivers/i2c/busses/i2c-tegra.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/i2c/busses/i2c-tegra.c b/drivers/i2c/busses/i2c-tegra.c
index b912a7153e3b..22f6020e79aa 100644
--- a/drivers/i2c/busses/i2c-tegra.c
+++ b/drivers/i2c/busses/i2c-tegra.c
@@ -800,9 +800,9 @@ static int tegra_i2c_init(struct tegra_i2c_dev *i2c_dev, 
bool clk_reinit)
        u32 tsu_thd;
        u8 tlow, thigh;
 
-       reset_control_assert(i2c_dev->rst);
-       udelay(2);
-       reset_control_deassert(i2c_dev->rst);
+       err = reset_control_reset(i2c_dev->rst);
+       if (WARN_ON_ONCE(err))
+               return err;
 
        if (i2c_dev->is_dvc)
                tegra_dvc_init(i2c_dev);
-- 
2.27.0

Reply via email to