diff options
author | Markus Pargmann | 2013-03-29 16:20:10 +0100 |
---|---|---|
committer | Shawn Guo | 2013-04-09 13:46:30 +0200 |
commit | 75498083e25e96932ad998ffdeadb17234c68d3a (patch) | |
tree | f03b72b32ee8509f1aa64cf0250ef825003529a9 /arch | |
parent | ARM: clk-imx35: Bugfix iomux clock (diff) | |
download | kernel-qcow2-linux-75498083e25e96932ad998ffdeadb17234c68d3a.tar.gz kernel-qcow2-linux-75498083e25e96932ad998ffdeadb17234c68d3a.tar.xz kernel-qcow2-linux-75498083e25e96932ad998ffdeadb17234c68d3a.zip |
ARM: imx35 Bugfix admux clock
The admux clock seems to be the audmux clock as tests show. audmux does
not work without this clock enabled. Currently imx35 does not register a
clock device for audmux. This patch adds this registration. imx-audmux
driver already handles a clock device, so no changes are necessary
there.
Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
Cc: stable@vger.kernel.org
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-imx/clk-imx35.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/clk-imx35.c b/arch/arm/mach-imx/clk-imx35.c index b95898a3912c..2193c834f55c 100644 --- a/arch/arm/mach-imx/clk-imx35.c +++ b/arch/arm/mach-imx/clk-imx35.c @@ -257,6 +257,7 @@ int __init mx35_clocks_init(void) clk_register_clkdev(clk[wdog_gate], NULL, "imx2-wdt.0"); clk_register_clkdev(clk[nfc_div], NULL, "imx25-nand.0"); clk_register_clkdev(clk[csi_gate], NULL, "mx3-camera.0"); + clk_register_clkdev(clk[admux_gate], "audmux", NULL); clk_prepare_enable(clk[spba_gate]); clk_prepare_enable(clk[gpio1_gate]); |