diff options
Diffstat (limited to 'drivers/net/ethernet/adi/bfin_mac.c')
-rw-r--r-- | drivers/net/ethernet/adi/bfin_mac.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/net/ethernet/adi/bfin_mac.c b/drivers/net/ethernet/adi/bfin_mac.c index a175d0be1ae1..ee705771bd2c 100644 --- a/drivers/net/ethernet/adi/bfin_mac.c +++ b/drivers/net/ethernet/adi/bfin_mac.c | |||
@@ -188,10 +188,9 @@ static int desc_list_init(struct net_device *dev) | |||
188 | 188 | ||
189 | /* allocate a new skb for next time receive */ | 189 | /* allocate a new skb for next time receive */ |
190 | new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN); | 190 | new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN); |
191 | if (!new_skb) { | 191 | if (!new_skb) |
192 | pr_notice("init: low on mem - packet dropped\n"); | ||
193 | goto init_error; | 192 | goto init_error; |
194 | } | 193 | |
195 | skb_reserve(new_skb, NET_IP_ALIGN); | 194 | skb_reserve(new_skb, NET_IP_ALIGN); |
196 | /* Invidate the data cache of skb->data range when it is write back | 195 | /* Invidate the data cache of skb->data range when it is write back |
197 | * cache. It will prevent overwritting the new data from DMA | 196 | * cache. It will prevent overwritting the new data from DMA |
@@ -1236,7 +1235,6 @@ static void bfin_mac_rx(struct net_device *dev) | |||
1236 | 1235 | ||
1237 | new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN); | 1236 | new_skb = netdev_alloc_skb(dev, PKT_BUF_SZ + NET_IP_ALIGN); |
1238 | if (!new_skb) { | 1237 | if (!new_skb) { |
1239 | netdev_notice(dev, "rx: low on mem - packet dropped\n"); | ||
1240 | dev->stats.rx_dropped++; | 1238 | dev->stats.rx_dropped++; |
1241 | goto out; | 1239 | goto out; |
1242 | } | 1240 | } |