[patch][wip] staging: unisys: kmalloc/memset move to kzalloc

2014-03-18 Thread Silvio F
Hi, I have followed this thread and have seen that not all parts was kcalloc'ized. Please review this patch and maybe include it. This patch is WIP because I have no hardware and can only do a compile test. version 2: * remove ALLOC_CMDRSP define Bye, Silvio -- To unsubscribe from this list:

[PATCH] staging: unisys: kmalloc/memset to kzalloc conversation

2014-03-18 Thread Silvio F
er transformation to kzalloc only a rename for kzalloc and was completly removed. Signed-off-by: Silvio F --- drivers/staging/unisys/include/uisutils.h | 7 --- drivers/staging/unisys/virthba/virthba.c| 9 - drivers/staging/unisys/virtpci/virtpci.c| 3

Re: [PATCH] staging: unisys: kmalloc/memset to kzalloc conversation

2014-03-18 Thread Silvio F.
Hi, > On Tue, Mar 18, 2014 at 09:07:51PM +0100, Silvio F wrote: > > This patch solves the Coccinelle warning: "kzalloc should be used > > instead of kmalloc/memset" > > > > This patch is a fixup for > > > > linux-next: 97a84f1203786985

[patch][wip] staging: unisys: kmalloc/memset move to kzalloc

2014-03-18 Thread Silvio F
Hi, I have followed this thread and have seen that not all parts was kcalloc'ized. Please review this patch and maybe include it. This patch is WIP because I have no hardware and can only do a compile test. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body o

[PATCH] staging: unisys: kmalloc/memset to kzalloc conversation

2014-03-18 Thread Silvio F
This patch solves the Coccinelle warning: "kzalloc should be used instead of kmalloc/memset" This patch is a fixup for linux-next: 97a84f1203786985856a0d4b49b1d7cc387238ce "Staging: unisys: Replace kmalloc/memset with kzalloc" Signed-off-by: Silvio F --- dr