projects
/
GitHub
/
LineageOS
/
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:
6638f4e
)
watchdog: jz4740: Pass device to clk_get
author
Lars-Peter Clausen
<lars@metafoo.de>
Sun, 12 May 2013 18:04:03 +0000
(20:04 +0200)
committer
Wim Van Sebroeck
<wim@iguana.be>
Thu, 11 Jul 2013 19:12:31 +0000
(21:12 +0200)
In preparation to switching the jz4740 clk driver to the common clk framework
make sure to pass the device to clk_get().
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
drivers/watchdog/jz4740_wdt.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/watchdog/jz4740_wdt.c
b/drivers/watchdog/jz4740_wdt.c
index 1cb25f69a96dbff9b4c93b0e3eceab93798c8146..d1afdf684c18c55a5899238dc0843fee40a08cee 100644
(file)
--- a/
drivers/watchdog/jz4740_wdt.c
+++ b/
drivers/watchdog/jz4740_wdt.c
@@
-177,7
+177,7
@@
static int jz4740_wdt_probe(struct platform_device *pdev)
goto err_out;
}
- drvdata->rtc_clk = clk_get(
NULL
, "rtc");
+ drvdata->rtc_clk = clk_get(
&pdev->dev
, "rtc");
if (IS_ERR(drvdata->rtc_clk)) {
dev_err(&pdev->dev, "cannot find RTC clock\n");
ret = PTR_ERR(drvdata->rtc_clk);