Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1337816 > unrolled thread

[PATCH] i2c: bcm2835: Don't complain on -EPROBE_DEFER from getting our clock

Started byEric Anholt <eric@anholt.net>
First post2016-02-19 02:20 +0100
Last post2016-02-19 02:20 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] i2c: bcm2835: Don't complain on -EPROBE_DEFER from getting our clock Eric Anholt <eric@anholt.net> - 2016-02-19 02:20 +0100

#1337816 — [PATCH] i2c: bcm2835: Don't complain on -EPROBE_DEFER from getting our clock

FromEric Anholt <eric@anholt.net>
Date2016-02-19 02:20 +0100
Subject[PATCH] i2c: bcm2835: Don't complain on -EPROBE_DEFER from getting our clock
Message-ID<r3HTH-5RO-3@gated-at.bofh.it>
Fixes dmesg spam when we just need to wait a moment for the clock
driver to probe.

Signed-off-by: Eric Anholt <eric@anholt.net>
---
 drivers/i2c/busses/i2c-bcm2835.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/i2c-bcm2835.c b/drivers/i2c/busses/i2c-bcm2835.c
index 818b051..d4f3239 100644
--- a/drivers/i2c/busses/i2c-bcm2835.c
+++ b/drivers/i2c/busses/i2c-bcm2835.c
@@ -253,7 +253,8 @@ static int bcm2835_i2c_probe(struct platform_device *pdev)
 
 	i2c_dev->clk = devm_clk_get(&pdev->dev, NULL);
 	if (IS_ERR(i2c_dev->clk)) {
-		dev_err(&pdev->dev, "Could not get clock\n");
+		if (PTR_ERR(i2c_dev->clk) != -EPROBE_DEFER)
+			dev_err(&pdev->dev, "Could not get clock\n");
 		return PTR_ERR(i2c_dev->clk);
 	}
 
-- 
2.7.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web