diff options
Diffstat (limited to 'arch/arm/mach-omap2/vc.c')
| -rw-r--r-- | arch/arm/mach-omap2/vc.c | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/arm/mach-omap2/vc.c b/arch/arm/mach-omap2/vc.c index 84da34f9a7c..880249b1701 100644 --- a/arch/arm/mach-omap2/vc.c +++ b/arch/arm/mach-omap2/vc.c @@ -12,8 +12,7 @@  #include <linux/init.h>  #include <linux/bug.h> -#include <plat/cpu.h> - +#include "soc.h"  #include "voltage.h"  #include "vc.h"  #include "prm-regbits-34xx.h" @@ -116,9 +115,8 @@ int omap_vc_pre_scale(struct voltagedomain *voltdm,  	}  	if (!voltdm->pmic->uv_to_vsel) { -		pr_err("%s: PMIC function to convert voltage in uV to" -			"vsel not registered. Hence unable to scale voltage" -			"for vdd_%s\n", __func__, voltdm->name); +		pr_err("%s: PMIC function to convert voltage in uV to vsel not registered. Hence unable to scale voltage for vdd_%s\n", +		       __func__, voltdm->name);  		return -ENODATA;  	}  |