On 19-06-03 09:35:02, [email protected] wrote:
> From: Anson Huang <[email protected]>
>
> This patch adds i.MX8MN clock driver support.
>
> Signed-off-by: Anson Huang <[email protected]>
> ---
> Changes since V1:
> - add GPIOx clocks.
...
> +static struct imx_pll14xx_clk imx8mn_sys_pll __initdata = {
> + .type = PLL_1416X,
> + .rate_table = imx8mn_pll1416x_tbl,
> +};
> +
> +static const char *pll_ref_sels[] = { "osc_24m", "dummy", "dummy", "dummy",
> };
All of these should be "static const char * const ".
> +static const char *audio_pll1_bypass_sels[] = {"audio_pll1",
> "audio_pll1_ref_sel", };
> +static const char *audio_pll2_bypass_sels[] = {"audio_pll2",
> "audio_pll2_ref_sel", };
...
> + clk_data.clks = clks;
> + clk_data.clk_num = ARRAY_SIZE(clks);
> + ret = of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data);
> + if (ret < 0) {
> + pr_err("failed to register clks for i.MX8MN\n");
> + return -EINVAL;
> + }
> +
> + imx_register_uart_clocks(uart_clks);
> +
> + return 0;
> +}
> +CLK_OF_DECLARE_DRIVER(imx8mn, "fsl,imx8mn-ccm", imx8mn_clocks_init);
Any reason why this cannot be a platform driver ?
> --
> 2.7.4
>