diff options
Diffstat (limited to 'arch/arm/mach-omap2/pm.c')
| -rw-r--r-- | arch/arm/mach-omap2/pm.c | 20 | 
1 files changed, 13 insertions, 7 deletions
diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c index e742118fcfd2..e1b41416fbf1 100644 --- a/arch/arm/mach-omap2/pm.c +++ b/arch/arm/mach-omap2/pm.c @@ -13,7 +13,7 @@  #include <linux/init.h>  #include <linux/io.h>  #include <linux/err.h> -#include <linux/opp.h> +#include <linux/pm_opp.h>  #include <linux/export.h>  #include <linux/suspend.h>  #include <linux/cpu.h> @@ -131,7 +131,7 @@ static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name,  {  	struct voltagedomain *voltdm;  	struct clk *clk; -	struct opp *opp; +	struct dev_pm_opp *opp;  	unsigned long freq, bootup_volt;  	struct device *dev; @@ -172,7 +172,7 @@ static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name,  	clk_put(clk);  	rcu_read_lock(); -	opp = opp_find_freq_ceil(dev, &freq); +	opp = dev_pm_opp_find_freq_ceil(dev, &freq);  	if (IS_ERR(opp)) {  		rcu_read_unlock();  		pr_err("%s: unable to find boot up OPP for vdd_%s\n", @@ -180,7 +180,7 @@ static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name,  		goto exit;  	} -	bootup_volt = opp_get_voltage(opp); +	bootup_volt = dev_pm_opp_get_voltage(opp);  	rcu_read_unlock();  	if (!bootup_volt) {  		pr_err("%s: unable to find voltage corresponding to the bootup OPP for vdd_%s\n", @@ -266,7 +266,12 @@ static void __init omap4_init_voltages(void)  static inline void omap_init_cpufreq(void)  { -	struct platform_device_info devinfo = { .name = "omap-cpufreq", }; +	struct platform_device_info devinfo = { }; + +	if (!of_have_populated_dt()) +		devinfo.name = "omap-cpufreq"; +	else +		devinfo.name = "cpufreq-cpu0";  	platform_device_register_full(&devinfo);  } @@ -300,10 +305,11 @@ int __init omap2_common_pm_late_init(void)  		/* Smartreflex device init */  		omap_devinit_smartreflex(); -		/* cpufreq dummy device instantiation */ -		omap_init_cpufreq();  	} +	/* cpufreq dummy device instantiation */ +	omap_init_cpufreq(); +  #ifdef CONFIG_SUSPEND  	suspend_set_ops(&omap_pm_ops);  #endif  |