diff options
author | Wolfram Sang <wsa-dev@sang-engineering.com> | 2016-08-09 23:11:40 +0300 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2016-08-22 09:19:56 +0300 |
commit | 56025e7bc2079cda92643b43bf26991d3d09717d (patch) | |
tree | 7a10dcf180fbce1b102fbc3a6e8b6eede9d7e116 /drivers/i2c/busses/i2c-uniphier-f.c | |
parent | ea734404f3daf1f6b5103171d848c9d4641fd96b (diff) | |
download | linux-56025e7bc2079cda92643b43bf26991d3d09717d.tar.xz |
i2c: uniphier{-f}: don't print error when adding adapter fails
The core will do this for us now.
Signed-off-by: Wolfram Sang <wsa-dev@sang-engineering.com>
Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c/busses/i2c-uniphier-f.c')
-rw-r--r-- | drivers/i2c/busses/i2c-uniphier-f.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/i2c/busses/i2c-uniphier-f.c b/drivers/i2c/busses/i2c-uniphier-f.c index aeead0d27d10..35608531fe07 100644 --- a/drivers/i2c/busses/i2c-uniphier-f.c +++ b/drivers/i2c/busses/i2c-uniphier-f.c @@ -550,11 +550,6 @@ static int uniphier_fi2c_probe(struct platform_device *pdev) } ret = i2c_add_adapter(&priv->adap); - if (ret) { - dev_err(dev, "failed to add I2C adapter\n"); - goto err; - } - err: if (ret) clk_disable_unprepare(priv->clk); |