staging: rtl8192e: Fix OOM_MESSAGE warnings

Remove alloc failed messages where not needed to make checkpatch.pl happy.

Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Mateusz Kulikowski 2015-05-31 20:19:43 +02:00 committed by Greg Kroah-Hartman
parent 0beee3ba61
commit 7c3d257916
1 changed files with 2 additions and 6 deletions

View File

@ -92,10 +92,8 @@ static struct sk_buff *rtllib_ADDBA(struct rtllib_device *ieee, u8 *Dst,
return NULL;
}
skb = dev_alloc_skb(len + sizeof(struct rtllib_hdr_3addr));
if (skb == NULL) {
netdev_err(ieee->dev, "Can't alloc skb for ADDBA_REQ\n");
if (skb == NULL)
return NULL;
}
memset(skb->data, 0, sizeof(struct rtllib_hdr_3addr));
@ -160,10 +158,8 @@ static struct sk_buff *rtllib_DELBA(struct rtllib_device *ieee, u8 *dst,
DelbaParamSet.field.TID = pBA->BaParamSet.field.TID;
skb = dev_alloc_skb(len + sizeof(struct rtllib_hdr_3addr));
if (skb == NULL) {
netdev_err(ieee->dev, "Can't alloc skb for DELBA_REQ\n");
if (skb == NULL)
return NULL;
}
skb_reserve(skb, ieee->tx_headroom);