diff options
Diffstat (limited to 'arch/arm/plat-samsung/pm.c')
| -rw-r--r-- | arch/arm/plat-samsung/pm.c | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/arm/plat-samsung/pm.c b/arch/arm/plat-samsung/pm.c index 15070284343..002b1472293 100644 --- a/arch/arm/plat-samsung/pm.c +++ b/arch/arm/plat-samsung/pm.c @@ -51,7 +51,7 @@ void s3c_pm_dbg(const char *fmt, ...)  	char buff[256];  	va_start(va, fmt); -	vsprintf(buff, fmt, va); +	vsnprintf(buff, sizeof(buff), fmt, va);  	va_end(va);  	printascii(buff); @@ -243,6 +243,7 @@ int (*pm_cpu_sleep)(unsigned long);  static int s3c_pm_enter(suspend_state_t state)  { +	int ret;  	/* ensure the debug is initialised (if enabled) */  	s3c_pm_debug_init(); @@ -300,7 +301,9 @@ static int s3c_pm_enter(suspend_state_t state)  	 * we resume as it saves its own register state and restores it  	 * during the resume.  */ -	cpu_suspend(0, pm_cpu_sleep); +	ret = cpu_suspend(0, pm_cpu_sleep); +	if (ret) +		return ret;  	/* restore the system state */  |