Skip to content

Commit ac04fd6

Browse files
elfringvzapolskiy
authored andcommitted
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>
1 parent bfeffd1 commit ac04fd6

File tree

1 file changed

+1
-5
lines changed
  • arch/arm/mach-lpc32xx

1 file changed

+1
-5
lines changed

arch/arm/mach-lpc32xx/pm.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,8 @@ static int lpc32xx_pm_enter(suspend_state_t state)
8787

8888
/* Allocate some space for temporary IRAM storage */
8989
iram_swap_area = kmalloc(lpc32xx_sys_suspend_sz, GFP_KERNEL);
90-
if (!iram_swap_area) {
91-
printk(KERN_ERR
92-
"PM Suspend: cannot allocate memory to save portion "
93-
"of SRAM\n");
90+
if (!iram_swap_area)
9491
return -ENOMEM;
95-
}
9692

9793
/* Backup a small area of IRAM used for the suspend code */
9894
memcpy(iram_swap_area, (void *) TEMP_IRAM_AREA,

0 commit comments

Comments
 (0)