On Thu, Apr 20, 2017 at 03:16:39PM +0200, Marek Szyprowski wrote: > Clock providers should use the new struct clk_hw based API, so convert > Samsung S5PV210 Audio Subsystem clock provider to the new approach. > > Signed-off-by: Marek Szyprowski <m.szyprowski@xxxxxxxxxxx> > --- > drivers/clk/samsung/clk-s5pv210-audss.c | 50 +++++++++++++++++---------------- > 1 file changed, 26 insertions(+), 24 deletions(-) > > diff --git a/drivers/clk/samsung/clk-s5pv210-audss.c b/drivers/clk/samsung/clk-s5pv210-audss.c > index c66ed2d1450e..14d2e3367878 100644 > --- a/drivers/clk/samsung/clk-s5pv210-audss.c > +++ b/drivers/clk/samsung/clk-s5pv210-audss.c > @@ -24,9 +24,8 @@ > #include <dt-bindings/clock/s5pv210-audss.h> > > static DEFINE_SPINLOCK(lock); > -static struct clk **clk_table; > static void __iomem *reg_base; > -static struct clk_onecell_data clk_data; > +static struct clk_hw_onecell_data *clk_data; > > #define ASS_CLK_SRC 0x0 > #define ASS_CLK_DIV 0x4 > @@ -71,6 +70,7 @@ static int s5pv210_audss_clk_probe(struct platform_device *pdev) > const char *mout_audss_p[2]; > const char *mout_i2s_p[3]; > const char *hclk_p; > + struct clk_hw **clk_table; > struct clk *hclk, *pll_ref, *pll_in, *cdclk, *sclk_audio; > > res = platform_get_resource(pdev, IORESOURCE_MEM, 0); > @@ -80,14 +80,16 @@ static int s5pv210_audss_clk_probe(struct platform_device *pdev) > return PTR_ERR(reg_base); > } > > - clk_table = devm_kzalloc(&pdev->dev, > - sizeof(struct clk *) * AUDSS_MAX_CLKS, > + clk_data = devm_kzalloc(&pdev->dev, > + sizeof(*clk_data) + > + sizeof(*clk_data->hws) * AUDSS_MAX_CLKS, > GFP_KERNEL); > - if (!clk_table) > + > + if (!clk_data) > return -ENOMEM; > > - clk_data.clks = clk_table; > - clk_data.clk_num = AUDSS_MAX_CLKS; > + clk_data->num = AUDSS_MAX_CLKS; > + clk_table = clk_data->hws; > > hclk = devm_clk_get(&pdev->dev, "hclk"); > if (IS_ERR(hclk)) { > @@ -116,7 +118,7 @@ static int s5pv210_audss_clk_probe(struct platform_device *pdev) > else > mout_audss_p[0] = "xxti"; > mout_audss_p[1] = __clk_get_name(pll_in); > - clk_table[CLK_MOUT_AUDSS] = clk_register_mux(NULL, "mout_audss", > + clk_data->hws[CLK_MOUT_AUDSS] = clk_hw_register_mux(NULL, "mout_audss", Shouldn't it be: clk_table[CLK_MOUT_AUDSS] ? Best regards, Krzysztof -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html