alistair23-linux/drivers/staging/rtl8192e
Quentin Lambert b6b0012c2d staging: rtl8192e: Remove unnecessary OOM message
This patch reduces the kernel size by removing error messages that duplicate
the normal OOM message.

A simplified version of the semantic patch that finds this problem is as
follows: (http://coccinelle.lip6.fr)

@@
identifier f,print,l;
expression e;
constant char[] c;
@@

e = \(kzalloc\|kmalloc\|devm_kzalloc\|devm_kmalloc\)(...);
if (e == NULL) {
  <+...
-  print(...,c,...);
  ... when any
(
  goto l;
|
  return ...;
)
  ...+> }

Signed-off-by: Quentin Lambert <lambert.quentin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2015-03-06 16:59:53 -08:00
..
rtl8192e staging: rtl8192e: Remove if conditions. 2015-03-06 15:30:07 -08:00
dot11d.c
dot11d.h
Kconfig
license
Makefile
rtl819x_BA.h
rtl819x_BAProc.c
rtl819x_HT.h
rtl819x_HTProc.c staging: rtl8192e: rewrite the right hand side of an assignment 2015-02-26 15:23:47 -08:00
rtl819x_Qos.h
rtl819x_TS.h
rtl819x_TSProc.c
rtllib.h
rtllib_crypt.c
rtllib_crypt.h
rtllib_crypt_ccmp.c
rtllib_crypt_tkip.c
rtllib_crypt_wep.c
rtllib_debug.h
rtllib_endianfree.h
rtllib_module.c staging: rtl8192e: Remove unnecessary OOM message 2015-03-06 16:59:53 -08:00
rtllib_rx.c staging: rtl8192e: Remove unnecessary OOM message 2015-03-06 16:59:53 -08:00
rtllib_softmac.c staging: rtl8192e: replace memset(x,0,ETH_ALEN) by eth_zero_addr(x) 2015-03-06 09:54:34 -08:00
rtllib_softmac_wx.c staging: rtl8192e: replace memset(x,0,ETH_ALEN) by eth_zero_addr(x) 2015-03-06 09:54:34 -08:00
rtllib_tx.c
rtllib_wx.c Staging: rtl8192e: Fix line over 80 characters 2015-03-01 17:07:43 -08:00
TODO