diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-01-29 10:17:35 -0200 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-04-02 20:43:21 +0800 |
commit | 9591b8204b9fb9dab616e5e525d4d7676c4982f2 (patch) | |
tree | aa3bf321b31a4486a00664a3400154648f041eb0 /arch/arm/mach-imx | |
parent | 5fe839d997f955e9e62b70d798d3faaa19620383 (diff) | |
download | linux-3.10-9591b8204b9fb9dab616e5e525d4d7676c4982f2.tar.gz linux-3.10-9591b8204b9fb9dab616e5e525d4d7676c4982f2.tar.bz2 linux-3.10-9591b8204b9fb9dab616e5e525d4d7676c4982f2.zip |
ARM: imx: clk-imx27: Do not register peripheral clock for SSI
imx ssi block has two types of clocks:
- ipg: bus clock, the clock needed for accessing registers.
- per: peripheral clock, the clock needed for generating the bit rate.
Currently ssi driver only supports slave mode and thus need only to handle
the ipg clock, because the peripheral clock comes from the master codec.
Only register the ipg clock and do not register the peripheral clock for ssi
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r-- | arch/arm/mach-imx/clk-imx27.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/clk-imx27.c b/arch/arm/mach-imx/clk-imx27.c index 30b3242a7d4..8e3b6571910 100644 --- a/arch/arm/mach-imx/clk-imx27.c +++ b/arch/arm/mach-imx/clk-imx27.c @@ -278,8 +278,6 @@ int __init mx27_clocks_init(unsigned long fref) clk_register_clkdev(clk[scc_ipg_gate], "scc", NULL); clk_register_clkdev(clk[cpu_div], "cpu", NULL); clk_register_clkdev(clk[emi_ahb_gate], "emi_ahb" , NULL); - clk_register_clkdev(clk[ssi1_baud_gate], "bitrate" , "imx-ssi.0"); - clk_register_clkdev(clk[ssi2_baud_gate], "bitrate" , "imx-ssi.1"); mxc_timer_init(MX27_IO_ADDRESS(MX27_GPT1_BASE_ADDR), MX27_INT_GPT1); |