projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ff0fdc
)
usb: dwc3: exynos: switch dev_dbg() to dev_info()
author
Felipe Balbi
<balbi@ti.com>
Tue, 30 Jun 2015 17:47:45 +0000
(12:47 -0500)
committer
Felipe Balbi
<balbi@ti.com>
Wed, 29 Jul 2015 14:59:17 +0000
(09:59 -0500)
that message is informing that the clock is missing.
However, that's a valid condition for some setups; driver
even ignores the error and continues just fine.
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc3/dwc3-exynos.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/usb/dwc3/dwc3-exynos.c
b/drivers/usb/dwc3/dwc3-exynos.c
index 7bd0a95b2815425d8e088dc39b83e7106177131f..dd5cb5577dcaf62d411fb9776e47a23d4a4dacf7 100644
(file)
--- a/
drivers/usb/dwc3/dwc3-exynos.c
+++ b/
drivers/usb/dwc3/dwc3-exynos.c
@@
-145,7
+145,7
@@
static int dwc3_exynos_probe(struct platform_device *pdev)
exynos->susp_clk = devm_clk_get(dev, "usbdrd30_susp_clk");
if (IS_ERR(exynos->susp_clk)) {
- dev_
dbg
(dev, "no suspend clk specified\n");
+ dev_
info
(dev, "no suspend clk specified\n");
exynos->susp_clk = NULL;
}
clk_prepare_enable(exynos->susp_clk);