Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1458631
| From | Wolfram Sang <wsa-dev@sang-engineering.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 3/4] media: platform: exynos4-is: fimc-is-i2c: don't print error when adding adapter fails |
| Date | 2016-08-09 13:40 +0200 |
| Message-ID | <s4dy2-6VH-35@gated-at.bofh.it> (permalink) |
| References | <s4dy1-6VH-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
The core will do this for us now.
Signed-off-by: Wolfram Sang <wsa-dev@sang-engineering.com>
---
drivers/media/platform/exynos4-is/fimc-is-i2c.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/media/platform/exynos4-is/fimc-is-i2c.c b/drivers/media/platform/exynos4-is/fimc-is-i2c.c
index 7521aa59b0649c..fd888ef447a903 100644
--- a/drivers/media/platform/exynos4-is/fimc-is-i2c.c
+++ b/drivers/media/platform/exynos4-is/fimc-is-i2c.c
@@ -56,11 +56,8 @@ static int fimc_is_i2c_probe(struct platform_device *pdev)
i2c_adap->class = I2C_CLASS_SPD;
ret = i2c_add_adapter(i2c_adap);
- if (ret < 0) {
- dev_err(&pdev->dev, "failed to add I2C bus %s\n",
- node->full_name);
+ if (ret < 0)
return ret;
- }
platform_set_drvdata(pdev, isp_i2c);
--
2.8.1
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 3/4] media: platform: exynos4-is: fimc-is-i2c: don't print error when adding adapter fails Wolfram Sang <wsa-dev@sang-engineering.com> - 2016-08-09 13:40 +0200
csiph-web