Re: [PATCH v5 17/21] clk: tegra: pll: Add logic for SS

From: Benson Leung
Date: Wed May 13 2015 - 20:25:25 EST


On Tue, May 12, 2015 at 10:24 AM, Rhyland Klein <rklein@xxxxxxxxxx> wrote:
> +static void pll_clk_start_ss(struct tegra_clk_pll *pll)
> +{
> + if (pll->params->defaults_set && pll->params->ssc_ctrl_en_mask) {

Is there any reason you're checking for the existence of
ssc_ctrl_en_mask rather than ssc_ctrl_reg?

> + u32 val = pll_readl(pll->params->ssc_ctrl_reg, pll);
> +
> + val |= pll->params->ssc_ctrl_en_mask;
> + pll_writel(val, pll->params->ssc_ctrl_reg, pll);
> + }
> +}
> +
> +static void pll_clk_stop_ss(struct tegra_clk_pll *pll)
> +{
> + if (pll->params->defaults_set && pll->params->ssc_ctrl_en_mask) {
> + u32 val = pll_readl(pll->params->ssc_ctrl_reg, pll);
> +
> + val &= ~pll->params->ssc_ctrl_en_mask;
> + pll_writel(val, pll->params->ssc_ctrl_reg, pll);
> + }
> +}
> +




--
Benson Leung
Software Engineer, Chrom* OS
bleung@xxxxxxxxxxxx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/