diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 05:14:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:34 -0400 |
commit | 156f1ed640170d70c9fc8e5f6f797ea1f2a1653b (patch) | |
tree | 4709685cf46fce1ef552ccbee6d30f5073f99216 /drivers/isdn/i4l/isdn_net.h | |
parent | dd58c0dd30ac761837b1d0d8cc434c7ec7b2df68 (diff) |
isdn: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/isdn/i4l/isdn_net.h')
-rw-r--r-- | drivers/isdn/i4l/isdn_net.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/isdn/i4l/isdn_net.h b/drivers/isdn/i4l/isdn_net.h index bc2f0dd962ea..be4949715d55 100644 --- a/drivers/isdn/i4l/isdn_net.h +++ b/drivers/isdn/i4l/isdn_net.h | |||
@@ -108,7 +108,7 @@ static __inline__ void isdn_net_add_to_bundle(isdn_net_dev *nd, isdn_net_local * | |||
108 | 108 | ||
109 | lp = nd->queue; | 109 | lp = nd->queue; |
110 | // printk(KERN_DEBUG "%s: lp:%s(%p) nlp:%s(%p) last(%p)\n", | 110 | // printk(KERN_DEBUG "%s: lp:%s(%p) nlp:%s(%p) last(%p)\n", |
111 | // __FUNCTION__, lp->name, lp, nlp->name, nlp, lp->last); | 111 | // __func__, lp->name, lp, nlp->name, nlp, lp->last); |
112 | nlp->last = lp->last; | 112 | nlp->last = lp->last; |
113 | lp->last->next = nlp; | 113 | lp->last->next = nlp; |
114 | lp->last = nlp; | 114 | lp->last = nlp; |
@@ -129,7 +129,7 @@ static __inline__ void isdn_net_rm_from_bundle(isdn_net_local *lp) | |||
129 | master_lp = (isdn_net_local *) lp->master->priv; | 129 | master_lp = (isdn_net_local *) lp->master->priv; |
130 | 130 | ||
131 | // printk(KERN_DEBUG "%s: lp:%s(%p) mlp:%s(%p) last(%p) next(%p) mndq(%p)\n", | 131 | // printk(KERN_DEBUG "%s: lp:%s(%p) mlp:%s(%p) last(%p) next(%p) mndq(%p)\n", |
132 | // __FUNCTION__, lp->name, lp, master_lp->name, master_lp, lp->last, lp->next, master_lp->netdev->queue); | 132 | // __func__, lp->name, lp, master_lp->name, master_lp, lp->last, lp->next, master_lp->netdev->queue); |
133 | spin_lock_irqsave(&master_lp->netdev->queue_lock, flags); | 133 | spin_lock_irqsave(&master_lp->netdev->queue_lock, flags); |
134 | lp->last->next = lp->next; | 134 | lp->last->next = lp->next; |
135 | lp->next->last = lp->last; | 135 | lp->next->last = lp->last; |
@@ -141,7 +141,7 @@ static __inline__ void isdn_net_rm_from_bundle(isdn_net_local *lp) | |||
141 | } | 141 | } |
142 | lp->next = lp->last = lp; /* (re)set own pointers */ | 142 | lp->next = lp->last = lp; /* (re)set own pointers */ |
143 | // printk(KERN_DEBUG "%s: mndq(%p)\n", | 143 | // printk(KERN_DEBUG "%s: mndq(%p)\n", |
144 | // __FUNCTION__, master_lp->netdev->queue); | 144 | // __func__, master_lp->netdev->queue); |
145 | spin_unlock_irqrestore(&master_lp->netdev->queue_lock, flags); | 145 | spin_unlock_irqrestore(&master_lp->netdev->queue_lock, flags); |
146 | } | 146 | } |
147 | 147 | ||