aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/of_xilinx_wdt.c
diff options
context:
space:
mode:
authorMichal Simek <monstr@monstr.eu>2012-06-21 08:45:40 +0200
committerWim Van Sebroeck <wim@iguana.be>2012-07-23 12:47:00 +0200
commit90fe6c608f8d46e5bb3f31c2d5e1c90475253f79 (patch)
tree22b063eed6e76f2223c073a5cf384b1f5618b559 /drivers/watchdog/of_xilinx_wdt.c
parentwatchdog: coh901327_wdt: use clk_prepare/unprepare (diff)
downloadlinux-dev-90fe6c608f8d46e5bb3f31c2d5e1c90475253f79.tar.xz
linux-dev-90fe6c608f8d46e5bb3f31c2d5e1c90475253f79.zip
watchdog: xilinx: Read clock frequency directly from DT node
Do not use clock-frequency property from parent node. Use it from watchdog node. Signed-off-by: Michal Simek <monstr@monstr.eu> Acked-By: Alejandro Cabrera <acabrera@udio.cujae.edu.cu> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/of_xilinx_wdt.c')
-rw-r--r--drivers/watchdog/of_xilinx_wdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/of_xilinx_wdt.c b/drivers/watchdog/of_xilinx_wdt.c
index 55d2f66dbeae..294fb4e00521 100644
--- a/drivers/watchdog/of_xilinx_wdt.c
+++ b/drivers/watchdog/of_xilinx_wdt.c
@@ -297,7 +297,7 @@ static int __devinit xwdt_probe(struct platform_device *pdev)
no_timeout = 0;
- pfreq = (u32 *)of_get_property(pdev->dev.of_node->parent,
+ pfreq = (u32 *)of_get_property(pdev->dev.of_node,
"clock-frequency", NULL);
if (pfreq == NULL) {