diff options
-rw-r--r-- | drivers/clk/imx/clk-imx35.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/clk/imx/clk-imx35.c b/drivers/clk/imx/clk-imx35.c index 76c463d..a71d24c 100644 --- a/drivers/clk/imx/clk-imx35.c +++ b/drivers/clk/imx/clk-imx35.c @@ -84,6 +84,14 @@ enum mx35_clks { static struct clk *clk[clk_max]; +static struct clk ** const uart_clks[] __initconst = { + &clk[ipg], + &clk[uart1_gate], + &clk[uart2_gate], + &clk[uart3_gate], + NULL +}; + static void __init _mx35_clocks_init(void) { void __iomem *base; @@ -237,6 +245,8 @@ static void __init _mx35_clocks_init(void) */ clk_prepare_enable(clk[scc_gate]); + imx_register_uart_clocks(uart_clks); + imx_print_silicon_rev("i.MX35", mx35_revision()); } |