mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-05 08:48:53 +00:00
7a6cb0d549
Use kcalloc or 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,y,flags; statement S; type T; @@ x = - kmalloc + kcalloc ( - y * sizeof(T), + y, sizeof(T), flags); if (x == NULL) S -memset(x, 0, y * sizeof(T)); @@ 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> |
||
---|---|---|
.. | ||
ieee80211 | ||
authors | ||
Kconfig | ||
Makefile | ||
r819xU_cmdpkt.c | ||
r819xU_cmdpkt.h | ||
r819xU_HTGen.h | ||
r819xU_HTType.h | ||
r8192S_Efuse.c | ||
r8192S_Efuse.h | ||
r8192S_firmware.c | ||
r8192S_firmware.h | ||
r8192S_hw.h | ||
r8192S_phy.c | ||
r8192S_phy.h | ||
r8192S_phyreg.h | ||
r8192S_rtl6052.c | ||
r8192S_rtl6052.h | ||
r8192S_rtl8225.c | ||
r8192S_rtl8225.h | ||
r8192SU_HWImg.c | ||
r8192SU_HWImg.h | ||
r8192SU_led.c | ||
r8192SU_led.h | ||
r8192U_core.c | ||
r8192U_dm.c | ||
r8192U_dm.h | ||
r8192U_pm.c | ||
r8192U_pm.h | ||
r8192U_wx.c | ||
r8192U_wx.h | ||
r8192U.h | ||
TODO |