mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
ARM: lpc32xx: Delete an error message for a failed memory allocation in lpc32xx_pm_enter()
Omit an extra message for a memory allocation failure in this function. This issue was detected by using the Coccinelle software. Link: http://events.linuxfoundation.org/sites/events/files/slides/LCJ16-Refactor_Strings-WSang_0.pdf Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
This commit is contained in:
parent
bfeffd1552
commit
ac04fd6569
@ -87,12 +87,8 @@ static int lpc32xx_pm_enter(suspend_state_t state)
|
||||
|
||||
/* Allocate some space for temporary IRAM storage */
|
||||
iram_swap_area = kmalloc(lpc32xx_sys_suspend_sz, GFP_KERNEL);
|
||||
if (!iram_swap_area) {
|
||||
printk(KERN_ERR
|
||||
"PM Suspend: cannot allocate memory to save portion "
|
||||
"of SRAM\n");
|
||||
if (!iram_swap_area)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
/* Backup a small area of IRAM used for the suspend code */
|
||||
memcpy(iram_swap_area, (void *) TEMP_IRAM_AREA,
|
||||
|
Loading…
Reference in New Issue
Block a user