projects
/
platform
/
adaptation
/
renesas_rcar
/
renesas_kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
322a8b0
)
ARM: mxs: add saif clock
author
Dong Aisheng
<b29396@freescale.com>
Wed, 20 Jul 2011 03:41:41 +0000
(11:41 +0800)
committer
Sascha Hauer
<s.hauer@pengutronix.de>
Tue, 23 Aug 2011 06:56:13 +0000
(08:56 +0200)
Set pll0 as parent.
Signed-off-by: Dong Aisheng <b29396@freescale.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Reviewed-by: Wolfram Sang <w.sang@pengutronix.de>
arch/arm/mach-mxs/clock-mx28.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-mxs/clock-mx28.c
b/arch/arm/mach-mxs/clock-mx28.c
index
5dcc59d
..
7b3657b
100644
(file)
--- a/
arch/arm/mach-mxs/clock-mx28.c
+++ b/
arch/arm/mach-mxs/clock-mx28.c
@@
-640,6
+640,8
@@
static struct clk_lookup lookups[] = {
_REGISTER_CLOCK(NULL, "lradc", lradc_clk)
_REGISTER_CLOCK(NULL, "spdif", spdif_clk)
_REGISTER_CLOCK("imx28-fb", NULL, lcdif_clk)
+ _REGISTER_CLOCK("mxs-saif.0", NULL, saif0_clk)
+ _REGISTER_CLOCK("mxs-saif.1", NULL, saif1_clk)
};
static int clk_misc_init(void)
@@
-774,6
+776,8
@@
int __init mx28_clocks_init(void)
clk_enable(&uart_clk);
clk_set_parent(&lcdif_clk, &ref_pix_clk);
+ clk_set_parent(&saif0_clk, &pll0_clk);
+ clk_set_parent(&saif1_clk, &pll0_clk);
clkdev_add_table(lookups, ARRAY_SIZE(lookups));