linux/drivers/media
Julia Lawall 2ef17c9fc8 V4L/DVB: drivers/media: Use kzalloc
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 == NULL) S
-memset(x, 0, size);
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-06-01 01:23:16 -03:00
..
common V4L/DVB: xc3028: fix regression in firmware loading time 2010-05-18 00:43:45 -03:00
dvb V4L/DVB: drivers/media: Use kzalloc 2010-06-01 01:23:16 -03:00
IR V4L/DVB: [-next] IR: fix ir-nec-decoder build, select BITREVERSE 2010-06-01 01:22:12 -03:00
radio V4L/DVB: radio-am800: let v4l2_device_(un)register handle usb_get/set_intfdata 2010-05-19 12:58:56 -03:00
video V4L/DVB: drivers/media: Use kzalloc 2010-06-01 01:23:16 -03:00
Kconfig V4L/DVB (13612): IR: Move common IR code to drivers/media/IR 2009-12-16 00:18:42 -02:00
Makefile V4L/DVB (13612): IR: Move common IR code to drivers/media/IR 2009-12-16 00:18:42 -02:00