diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-05 23:47:47 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-05 23:47:47 -0500 |
commit | 0dc47877a3de00ceadea0005189656ae8dc52669 (patch) | |
tree | 7440a87385fe318cb42f0ae161be195f5e967d82 /net/irda/discovery.c | |
parent | 6387c4bed539539b05fa773cf2ff26529dc3074c (diff) |
net: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/irda/discovery.c')
-rw-r--r-- | net/irda/discovery.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/irda/discovery.c b/net/irda/discovery.c index 80c33f408e3f..bfacef8b76f4 100644 --- a/net/irda/discovery.c +++ b/net/irda/discovery.c | |||
@@ -110,7 +110,7 @@ void irlmp_add_discovery_log(hashbin_t *cachelog, hashbin_t *log) | |||
110 | { | 110 | { |
111 | discovery_t *discovery; | 111 | discovery_t *discovery; |
112 | 112 | ||
113 | IRDA_DEBUG(4, "%s()\n", __FUNCTION__); | 113 | IRDA_DEBUG(4, "%s()\n", __func__); |
114 | 114 | ||
115 | /* | 115 | /* |
116 | * If log is missing this means that IrLAP was unable to perform the | 116 | * If log is missing this means that IrLAP was unable to perform the |
@@ -157,7 +157,7 @@ void irlmp_expire_discoveries(hashbin_t *log, __u32 saddr, int force) | |||
157 | int i = 0; /* How many we expired */ | 157 | int i = 0; /* How many we expired */ |
158 | 158 | ||
159 | IRDA_ASSERT(log != NULL, return;); | 159 | IRDA_ASSERT(log != NULL, return;); |
160 | IRDA_DEBUG(4, "%s()\n", __FUNCTION__); | 160 | IRDA_DEBUG(4, "%s()\n", __func__); |
161 | 161 | ||
162 | spin_lock_irqsave(&log->hb_spinlock, flags); | 162 | spin_lock_irqsave(&log->hb_spinlock, flags); |
163 | 163 | ||