diff options
author | Vasanthy Kolluri <vkolluri@cisco.com> | 2010-06-24 06:50:56 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-06-25 23:50:23 -0400 |
commit | a7a79debcca02fbf908c0abed8d8fb25d0e51b48 (patch) | |
tree | 93651a514b16b50956b32f5665a5d896ae7b21dd /drivers/net/enic/vnic_wq.c | |
parent | 383ab92f11dd78d365ed05cf4d83ca2acc069a1f (diff) |
enic: Use (netdev|dev|pr)_<level> macro helpers for logging
Replace all printk routines with the (netdev|dev|pr)_<level> macros that
provide verbose logs.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Scott Feldman <scofeldm@cisco.com>
Signed-off-by: Vasanthy Kolluri <vkolluri@cisco.com>
Signed-off-by: Roopa Prabhu <roprabhu@cisco.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/enic/vnic_wq.c')
-rw-r--r-- | drivers/net/enic/vnic_wq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/enic/vnic_wq.c b/drivers/net/enic/vnic_wq.c index 1378afbdfe6..ed090a3d931 100644 --- a/drivers/net/enic/vnic_wq.c +++ b/drivers/net/enic/vnic_wq.c | |||
@@ -39,7 +39,7 @@ static int vnic_wq_alloc_bufs(struct vnic_wq *wq) | |||
39 | for (i = 0; i < blks; i++) { | 39 | for (i = 0; i < blks; i++) { |
40 | wq->bufs[i] = kzalloc(VNIC_WQ_BUF_BLK_SZ, GFP_ATOMIC); | 40 | wq->bufs[i] = kzalloc(VNIC_WQ_BUF_BLK_SZ, GFP_ATOMIC); |
41 | if (!wq->bufs[i]) { | 41 | if (!wq->bufs[i]) { |
42 | printk(KERN_ERR "Failed to alloc wq_bufs\n"); | 42 | pr_err("Failed to alloc wq_bufs\n"); |
43 | return -ENOMEM; | 43 | return -ENOMEM; |
44 | } | 44 | } |
45 | } | 45 | } |
@@ -94,7 +94,7 @@ int vnic_wq_alloc(struct vnic_dev *vdev, struct vnic_wq *wq, unsigned int index, | |||
94 | 94 | ||
95 | wq->ctrl = vnic_dev_get_res(vdev, RES_TYPE_WQ, index); | 95 | wq->ctrl = vnic_dev_get_res(vdev, RES_TYPE_WQ, index); |
96 | if (!wq->ctrl) { | 96 | if (!wq->ctrl) { |
97 | printk(KERN_ERR "Failed to hook WQ[%d] resource\n", index); | 97 | pr_err("Failed to hook WQ[%d] resource\n", index); |
98 | return -EINVAL; | 98 | return -EINVAL; |
99 | } | 99 | } |
100 | 100 | ||
@@ -167,7 +167,7 @@ int vnic_wq_disable(struct vnic_wq *wq) | |||
167 | udelay(10); | 167 | udelay(10); |
168 | } | 168 | } |
169 | 169 | ||
170 | printk(KERN_ERR "Failed to disable WQ[%d]\n", wq->index); | 170 | pr_err("Failed to disable WQ[%d]\n", wq->index); |
171 | 171 | ||
172 | return -ETIMEDOUT; | 172 | return -ETIMEDOUT; |
173 | } | 173 | } |