[PATCH 2/4] Moving of_init_opp_table

Shawn Guo shawn.guo at linaro.org
Wed Dec 18 02:43:17 EST 2013


On Tue, Dec 17, 2013 at 05:17:29PM -0800, John Tobias wrote:
>     Moving of_init_opp_table from mach-imx6q.c to imx6q-cpufreq.c in order to avoid adding it to mach-imx6sl.c.
>     Just incase the cpu frequency scaling is enabled on iMX6SL.

Drop the leading spaces and wrap the lines around 72 column.

> 
> Signed-off-by: John Tobias <john.tobias.ph at gmail.com>
> ---
>  drivers/cpufreq/imx6q-cpufreq.c | 5 +++++

For this patch, a proper patch subject prefix would be 'cpufreq: imx6q: '
You can use 'git log' to find out what a proper prefix for a file/patch
should be.

>  1 file changed, 5 insertions(+)
> 
> diff --git a/drivers/cpufreq/imx6q-cpufreq.c b/drivers/cpufreq/imx6q-cpufreq.c
> index 4b3f18e..2eea3d9 100644
> --- a/drivers/cpufreq/imx6q-cpufreq.c
> +++ b/drivers/cpufreq/imx6q-cpufreq.c
> @@ -166,6 +166,11 @@ static int imx6q_cpufreq_probe(struct platform_device *pdev)
>  		return -ENOENT;
>  	}
>  
> +	if (of_init_opp_table(cpu_dev)) {
> +		dev_err(cpu_dev,"failed to init OPP table\n");
> +		return -ENODEV;
> +	}
> +

Before doing that in the driver, you should check and make sure that
platform hasn't supply a opp table.

Shawn

>  	arm_clk = devm_clk_get(cpu_dev, "arm");
>  	pll1_sys_clk = devm_clk_get(cpu_dev, "pll1_sys");
>  	pll1_sw_clk = devm_clk_get(cpu_dev, "pll1_sw");
> -- 
> 1.8.3.2
> 




More information about the linux-arm-kernel mailing list