This patch adds missing NULL check and trims a line longer than 80 columns. Cc: John W. Linville <linville@xxxxxxxxxxxxx> Cc: Johannes Berg <johannes@xxxxxxxxxxxxxxxx> Cc: Joe Jezak <josejx@xxxxxxxxxx> Cc: Daniel Drake <dsd@xxxxxxxxxx> Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> --- net/ieee80211/softmac/ieee80211softmac_module.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Index: 2.6-mm/net/ieee80211/softmac/ieee80211softmac_module.c =================================================================== --- 2.6-mm.orig/net/ieee80211/softmac/ieee80211softmac_module.c +++ 2.6-mm/net/ieee80211/softmac/ieee80211softmac_module.c @@ -33,7 +33,10 @@ struct net_device *alloc_ieee80211softma struct ieee80211softmac_device *softmac; struct net_device *dev; - dev = alloc_ieee80211(sizeof(struct ieee80211softmac_device) + sizeof_priv); + dev = alloc_ieee80211(sizeof(*softmac) + sizeof_priv); + if (!dev) + return NULL; + softmac = ieee80211_priv(dev); softmac->dev = dev; softmac->ieee = netdev_priv(dev); - To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html