aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python
diff options
context:
space:
mode:
authorJulia Lawall <[email protected]>2010-05-13 22:02:03 +0200
committerMarcel Holtmann <[email protected]>2010-07-21 10:39:06 -0700
commitf8df39f1810b02f877c1ba1eed8e0710019e3b48 (patch)
treec0830933fc0bac2279a38b3225da4206f3ae48ef /tools/perf/scripts/python
parent5ee283c063a236b19e4582c675a2d8d615d5809c (diff)
Bluetooth: Use kzalloc for drivers
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 <[email protected]> Acked-by: Gustavo F. Padovan <[email protected]> Signed-off-by: Marcel Holtmann <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions