diff options
author | David Wu <david.wu@rock-chips.com> | 2016-05-16 21:57:38 +0800 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2016-06-17 13:39:15 +0200 |
commit | 69eda367ac4240428b9d16ab0c81113753ea079a (patch) | |
tree | 17f171661cdc191cff03f8ec5422a2e690938a6a /drivers/i2c | |
parent | e26747bf53b145dc4a64ad518915da8c9a40fef2 (diff) | |
download | talos-obmc-linux-69eda367ac4240428b9d16ab0c81113753ea079a.tar.gz talos-obmc-linux-69eda367ac4240428b9d16ab0c81113753ea079a.zip |
i2c: rk3x: Remove redundant rk3x_i2c_clean_ipd()
rk3x_i2c_setup() gets called directly before rk3x_i2c_start(),
and the last thing in setup was to clean the IPD, so no reason
to do it at the beginning of start.
Signed-off-by: David Wu <david.wu@rock-chips.com>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Tested-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-rk3x.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-rk3x.c b/drivers/i2c/busses/i2c-rk3x.c index 1e2677ae1638..9eeb4e5312f3 100644 --- a/drivers/i2c/busses/i2c-rk3x.c +++ b/drivers/i2c/busses/i2c-rk3x.c @@ -174,7 +174,6 @@ static void rk3x_i2c_start(struct rk3x_i2c *i2c) { u32 val; - rk3x_i2c_clean_ipd(i2c); i2c_writel(i2c, REG_INT_START, REG_IEN); /* enable adapter with correct mode, send START condition */ |