diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-17 00:01:10 -0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2008-04-17 00:01:10 -0400 |
commit | 3371836383d63b627b228875f5ac63023cbf11d2 (patch) | |
tree | b997894d9774bdc07f7df76ceca48e6a848760c8 /drivers/infiniband/hw/amso1100/c2_vq.c | |
parent | e8e91f6b4dc1179a70b0d21241b769c0ebfaa129 (diff) |
IB: Replace remaining __FUNCTION__ occurrences with __func__
__FUNCTION__ is gcc-specific, use __func__ instead.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/amso1100/c2_vq.c')
-rw-r--r-- | drivers/infiniband/hw/amso1100/c2_vq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/amso1100/c2_vq.c b/drivers/infiniband/hw/amso1100/c2_vq.c index cfdacb1ec279..9ce7819b7b2e 100644 --- a/drivers/infiniband/hw/amso1100/c2_vq.c +++ b/drivers/infiniband/hw/amso1100/c2_vq.c | |||
@@ -197,7 +197,7 @@ int vq_send_wr(struct c2_dev *c2dev, union c2wr *wr) | |||
197 | */ | 197 | */ |
198 | while (msg == NULL) { | 198 | while (msg == NULL) { |
199 | pr_debug("%s:%d no available msg in VQ, waiting...\n", | 199 | pr_debug("%s:%d no available msg in VQ, waiting...\n", |
200 | __FUNCTION__, __LINE__); | 200 | __func__, __LINE__); |
201 | init_waitqueue_entry(&__wait, current); | 201 | init_waitqueue_entry(&__wait, current); |
202 | add_wait_queue(&c2dev->req_vq_wo, &__wait); | 202 | add_wait_queue(&c2dev->req_vq_wo, &__wait); |
203 | spin_unlock(&c2dev->vqlock); | 203 | spin_unlock(&c2dev->vqlock); |