mtd: tests: consolidate kmalloc/memset 0 call to kzalloc
This is an API consolidation only. The use of kmalloc + memset to 0 is equivalent to kzalloc. Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
43584c1d42
commit
6e75632ac3
1 changed files with 1 additions and 2 deletions
|
@ -127,13 +127,12 @@ static int crosstest(void)
|
|||
unsigned char *pp1, *pp2, *pp3, *pp4;
|
||||
|
||||
pr_info("crosstest\n");
|
||||
pp1 = kmalloc(pgsize * 4, GFP_KERNEL);
|
||||
pp1 = kzalloc(pgsize * 4, GFP_KERNEL);
|
||||
if (!pp1)
|
||||
return -ENOMEM;
|
||||
pp2 = pp1 + pgsize;
|
||||
pp3 = pp2 + pgsize;
|
||||
pp4 = pp3 + pgsize;
|
||||
memset(pp1, 0, pgsize * 4);
|
||||
|
||||
addr0 = 0;
|
||||
for (i = 0; i < ebcnt && bbt[i]; ++i)
|
||||
|
|
Loading…
Reference in a new issue