summaryrefslogtreecommitdiff
path: root/arch/arm/plat-mxc
diff options
context:
space:
mode:
authorFabio Estevam <fabio.estevam@freescale.com>2010-12-07 16:16:04 (GMT)
committerSascha Hauer <s.hauer@pengutronix.de>2010-12-14 08:54:19 (GMT)
commit2c1f4672f0711e7f23ae49cbb7541088126fe576 (patch)
tree2e72446f10f1b0a07bbe470c1f24025516f9cfe4 /arch/arm/plat-mxc
parenta96efbc1fc8e4540dc1d561bb5e42a16a7b472d5 (diff)
downloadlinux-fsl-qoriq-2c1f4672f0711e7f23ae49cbb7541088126fe576.tar.xz
watchdog: imx: use clk_get to acquire the watchdog clock
Use clk_get to acquire the watchdog clock and also avoid hardcoding the clock name. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc')
-rw-r--r--arch/arm/plat-mxc/system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-mxc/system.c b/arch/arm/plat-mxc/system.c
index c3972c5..3455fc0 100644
--- a/arch/arm/plat-mxc/system.c
+++ b/arch/arm/plat-mxc/system.c
@@ -55,7 +55,7 @@ void arch_reset(char mode, const char *cmd)
} else {
struct clk *clk;
- clk = clk_get_sys("imx-wdt.0", NULL);
+ clk = clk_get_sys("imx2-wdt.0", NULL);
if (!IS_ERR(clk))
clk_enable(clk);
wcr_enable = (1 << 2);