[PATCH 9/20] drivers/bluetooth: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09
[PATCH 8/20] drivers/parport: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09
[PATCH 7/20] drivers/usb/serial: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09
[PATCH 14/20] drivers/net/vmxnet3: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 18:16
[PATCH v2 1/3] EEPROM: Header file cleanup
Change eeprom.c header file to format as in conventions Signed-off-by: Abraham Arce <x0066660(a)ti.com> Acked-by: Jean Delvare <khali(a)linux-fr.org> --- drivers/misc/eeprom/eeprom.c | 36 ++++++++++++++++-------------------- 1 files changed, 16 insertions(+), 20 deletions(-) diff --git a/drivers/misc/eeprom/e... 13 May 2010 17:09
[PATCH v2 0/3] EEPROM: Clean up headers in files
Change the top header of the required files under driver/misc/eeprom directory to follow the comment guidelines. These patches are against trivial/for-next. -- [PATCH] EEPROM: Header file cleanup [PATCH] EEPROM: 93cx6: Header file cleanup [PATCH] EEPROM: max6875: Header file cleanup -- eeprom.c ... 13 May 2010 17:09
[PATCH 20/20] drivers/mtd/nand: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09
[PATCH 10/20] drivers/block/drbd: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09
[PATCH 13/20] net/caif: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(s... 13 May 2010 17:09
[PATCH v2 3/3] EEPROM: max6875: Header file cleanup
Change max6875.c header file to format as in conventions Signed-off-by: Abraham Arce <x0066660(a)ti.com> --- drivers/misc/eeprom/max6875.c | 52 ++++++++++++++++++++-------------------- 1 files changed, 26 insertions(+), 26 deletions(-) diff --git a/drivers/misc/eeprom/max6875.c b/drivers/misc/eeprom/max6875... 13 May 2010 17:09