projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ab0a11
)
i2c: bcm2835: Don't complain on -EPROBE_DEFER from getting our clock
author
Eric Anholt
<eric@anholt.net>
Wed, 1 Jun 2016 21:43:33 +0000
(23:43 +0200)
committer
Wolfram Sang
<wsa@the-dreams.de>
Fri, 22 Jul 2016 07:23:53 +0000
(09:23 +0200)
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>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/busses/i2c-bcm2835.c
patch
|
blob
|
history
diff --git
a/drivers/i2c/busses/i2c-bcm2835.c
b/drivers/i2c/busses/i2c-bcm2835.c
index
818b051
..
d4f3239
100644
(file)
--- 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);
}