aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um
diff options
context:
space:
mode:
authorHimangi Saraogi <himangi774@gmail.com>2014-07-19 07:34:05 -0400
committerRichard Weinberger <richard@nod.at>2014-10-13 15:46:26 -0400
commit5f786595a291092d20fafe10c5a30378971a8cc3 (patch)
treec733a77931002ab271566ba81f6b926ae240b531 /arch/um
parent970e51feaddbc33ed0e7d187af7f69d1a12c7b6a (diff)
um: net: Eliminate NULL test after alloc_bootmem
alloc_bootmem and related functions never return NULL. Thus a NULL test or memset after calls to these functions is unnecessary. The following Coccinelle semantic patch was used for making the change: @@ expression E; statement S; @@ E = \(alloc_bootmem\|alloc_bootmem_low\|alloc_bootmem_pages\|alloc_bootmem_low_pages\)(...) ... when != E - if (E == NULL) S Signed-off-by: Himangi Saraogi <himangi774@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um')
-rw-r--r--arch/um/drivers/net_kern.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/um/drivers/net_kern.c b/arch/um/drivers/net_kern.c
index 7d26d9c0b2fb..f70dd540655d 100644
--- a/arch/um/drivers/net_kern.c
+++ b/arch/um/drivers/net_kern.c
@@ -659,10 +659,6 @@ static int __init eth_setup(char *str)
659 } 659 }
660 660
661 new = alloc_bootmem(sizeof(*new)); 661 new = alloc_bootmem(sizeof(*new));
662 if (new == NULL) {
663 printk(KERN_ERR "eth_init : alloc_bootmem failed\n");
664 return 1;
665 }
666 662
667 INIT_LIST_HEAD(&new->list); 663 INIT_LIST_HEAD(&new->list);
668 new->index = n; 664 new->index = n;