ehea: Fixing some message level

Currently there are some info message that is set as error, and an error
message that is set as debug. This patch just fixes it.

Signed-off-by: Breno Leitao <leitao@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Breno Leitao 2010-12-20 10:35:25 -08:00 committed by David S. Miller
parent 53320fe3bb
commit 782615aea8
1 changed files with 2 additions and 2 deletions

View File

@ -740,13 +740,13 @@ static int ehea_proc_rwqes(struct net_device *dev,
skb_arr_rq1_len, skb_arr_rq1_len,
wqe_index); wqe_index);
if (unlikely(!skb)) { if (unlikely(!skb)) {
netif_err(port, rx_err, dev, netif_info(port, rx_err, dev,
"LL rq1: skb=NULL\n"); "LL rq1: skb=NULL\n");
skb = netdev_alloc_skb(dev, skb = netdev_alloc_skb(dev,
EHEA_L_PKT_SIZE); EHEA_L_PKT_SIZE);
if (!skb) { if (!skb) {
netdev_info(dev, "Not enough memory to allocate skb\n"); netdev_err(dev, "Not enough memory to allocate skb\n");
break; break;
} }
} }