Commit a8d5dada authored by Markus Elfring's avatar Markus Elfring Committed by Michael Ellerman

powerpc/4xx: Delete error message for a ENOMEM in two functions

Omit an extra message for a memory allocation failure in these
functions.

This issue was detected by using the Coccinelle software.
Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 52930bc6
...@@ -334,7 +334,6 @@ void *ppc4xx_ocm_alloc(phys_addr_t *phys, int size, int align, ...@@ -334,7 +334,6 @@ void *ppc4xx_ocm_alloc(phys_addr_t *phys, int size, int align,
ocm_blk = kzalloc(sizeof(*ocm_blk), GFP_KERNEL); ocm_blk = kzalloc(sizeof(*ocm_blk), GFP_KERNEL);
if (!ocm_blk) { if (!ocm_blk) {
printk(KERN_ERR "PPC4XX OCM: could not allocate ocm block");
rh_free(ocm_reg->rh, offset); rh_free(ocm_reg->rh, offset);
break; break;
} }
...@@ -388,10 +387,8 @@ static int __init ppc4xx_ocm_init(void) ...@@ -388,10 +387,8 @@ static int __init ppc4xx_ocm_init(void)
return 0; return 0;
ocm_nodes = kzalloc((count * sizeof(struct ocm_info)), GFP_KERNEL); ocm_nodes = kzalloc((count * sizeof(struct ocm_info)), GFP_KERNEL);
if (!ocm_nodes) { if (!ocm_nodes)
printk(KERN_ERR "PPC4XX OCM: failed to allocate OCM nodes!\n");
return -ENOMEM; return -ENOMEM;
}
ocm_count = count; ocm_count = count;
count = 0; count = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment