aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ehea/ehea_main.c
diff options
context:
space:
mode:
authorBreno Leitao <leitao@linux.vnet.ibm.com>2010-12-20 10:35:25 -0800
committerDavid S. Miller <davem@davemloft.net>2010-12-20 10:35:25 -0800
commit782615aea84e57dc7f2f922cea823df3de635a78 (patch)
tree5ee90ec19135617f84604b38f485f18de18abcac /drivers/net/ehea/ehea_main.c
parentbatman-adv: Return hna count on local buffer fill (diff)
downloadlinux-dev-782615aea84e57dc7f2f922cea823df3de635a78.tar.xz
linux-dev-782615aea84e57dc7f2f922cea823df3de635a78.zip
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>
Diffstat (limited to 'drivers/net/ehea/ehea_main.c')
-rw-r--r--drivers/net/ehea/ehea_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ehea/ehea_main.c b/drivers/net/ehea/ehea_main.c
index 0dfef6d76445..1032b5bbe238 100644
--- a/drivers/net/ehea/ehea_main.c
+++ b/drivers/net/ehea/ehea_main.c
@@ -740,13 +740,13 @@ static int ehea_proc_rwqes(struct net_device *dev,
skb_arr_rq1_len,
wqe_index);
if (unlikely(!skb)) {
- netif_err(port, rx_err, dev,
+ netif_info(port, rx_err, dev,
"LL rq1: skb=NULL\n");
skb = netdev_alloc_skb(dev,
EHEA_L_PKT_SIZE);
if (!skb) {
- netdev_info(dev, "Not enough memory to allocate skb\n");
+ netdev_err(dev, "Not enough memory to allocate skb\n");
break;
}
}