On Mon, 2018-07-02 at 21:31 +0000, Yixun Lan wrote:
> Adding clocks for the pcie driver. Due to the ASIC design,
> the pcie controller re-use part of the mipi clock logic,
> so the mipi clock is also added.
> 
> Tested-by: Jianxin Qin <[email protected]>
> Signed-off-by: Yixun Lan <[email protected]>
> ---
>  drivers/clk/meson/axg.c | 148 ++++++++++++++++++++++++++++++++++++++++
>  drivers/clk/meson/axg.h |   6 +-
>  2 files changed, 153 insertions(+), 1 deletion(-)
> 
> 

[...]

> +
> +/* skip the partent 0, it's for debug only */
> +static u32 mux_table_pcie_ref[]      = { 1 };
> +static const char * const pcie_ref_parent_names[] = { "pcie_mux" };

Dropped these symbols.

> +
> +static struct clk_regmap axg_pcie_ref = {
> +     .data = &(struct clk_regmap_mux_data){
> +             .offset = HHI_PCIE_PLL_CNTL6,
> +             .mask = 0x1,
> +             .shift = 1,
> +             .table = mux_table_pcie_ref,

Replaced with the table itself

> +     },
> +     .hw.init = &(struct clk_init_data){
> +             .name = "pcie_ref",
> +             .ops = &clk_regmap_mux_ops,
> +             .parent_names = pcie_ref_parent_names,
> +             .num_parents = ARRAY_SIZE(pcie_ref_parent_names),

Replaced with the table itself and applied. Thx

> +             .flags = CLK_SET_RATE_PARENT,
> +     },
> +};
> +
> 

Reply via email to