linux/drivers/net/wireless/ipw2x00
Julia Lawall ec96cfd821 drivers/net: Drop unnecessary NULL test
The result of container_of should not be NULL.  In particular, in this case
the argument to the enclosing function has passed though INIT_WORK, which
dereferences it, implying that its container cannot be NULL.

A simplified version of the semantic patch that makes this change is as
follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@
identifier fn,work,x,fld;
type T;
expression E1,E2;
statement S;
@@

static fn(struct work_struct *work) {
  ... when != work = E1
  x = container_of(work,T,fld)
  ... when != x = E2
- if (x == NULL) S
  ...
}
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: Zhu Yi <yi.zhu@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2009-07-24 15:05:12 -04:00
..
Kconfig make net/ieee80211.h private to ipw2x00 2009-02-27 14:51:42 -05:00
Makefile
ieee80211.h ipw2x00: convert infrastructure for use by net_device_ops 2009-03-21 22:55:31 -07:00
ipw2100.c Wireless: remove driver_data direct access of struct device 2009-05-06 15:15:01 -04:00
ipw2100.h ipw2x00: age scan results on resume 2009-02-27 14:52:43 -05:00
ipw2200.c drivers/net: Drop unnecessary NULL test 2009-07-24 15:05:12 -04:00
ipw2200.h ipw2x00: age scan results on resume 2009-02-27 14:52:43 -05:00
libipw_geo.c make net/ieee80211.h private to ipw2x00 2009-02-27 14:51:42 -05:00
libipw_module.c ipw2x00: remove old compat_net_dev_ops code 2009-04-16 02:20:04 -07:00
libipw_rx.c ipw2x00: convert to internal net_device_stats 2009-03-21 22:55:31 -07:00
libipw_tx.c net: convert remaining non-symbolic return values in ndo_start_xmit() functions 2009-07-05 19:23:38 -07:00
libipw_wx.c ipw2x00: age scan results on resume 2009-02-27 14:52:43 -05:00