]> git.baikalelectronics.ru Git - kernel.git/commit
drivers/gpu/drm: Use kzalloc
authorJulia Lawall <julia@diku.dk>
Thu, 13 May 2010 19:58:56 +0000 (21:58 +0200)
committerDave Airlie <airlied@redhat.com>
Tue, 18 May 2010 05:57:05 +0000 (15:57 +1000)
commitf36c56fe8afa09a490d4bf6f8935e849976e8da4
treec55bcec8359e666a625b9108a7375f18c7f5c4b7
parentbb26467189dad754f91246f39237eabe496365ae
drivers/gpu/drm: 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>
Reviewed-by: Corbin Simpson <MostAwesomeDude@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_auth.c
drivers/gpu/drm/drm_dma.c
drivers/gpu/drm/drm_fops.c
drivers/gpu/drm/savage/savage_bci.c