aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rt2870/rtmp_def.h
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2009-01-07 17:31:57 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2009-01-07 18:48:54 -0500
commitd599edcaea987e233fad808f88850f725e8a5530 (patch)
tree5e9336d4882232ae7296355cd2d21ed0aff86f8f /drivers/staging/rt2870/rtmp_def.h
parent9b4778f680aa79d838ae2be6ab958938f744ce5f (diff)
staging: __FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/staging/rt2870/rtmp_def.h')
-rw-r--r--drivers/staging/rt2870/rtmp_def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rt2870/rtmp_def.h b/drivers/staging/rt2870/rtmp_def.h
index 9b86325b4c5..c0f7561a9d9 100644
--- a/drivers/staging/rt2870/rtmp_def.h
+++ b/drivers/staging/rt2870/rtmp_def.h
@@ -342,7 +342,7 @@
342/* sanity check for apidx */ 342/* sanity check for apidx */
343#define MBSS_MR_APIDX_SANITY_CHECK(apidx) \ 343#define MBSS_MR_APIDX_SANITY_CHECK(apidx) \
344 { if (apidx > MAX_MBSSID_NUM) { \ 344 { if (apidx > MAX_MBSSID_NUM) { \
345 printk("%s> Error! apidx = %d > MAX_MBSSID_NUM!\n", __FUNCTION__, apidx); \ 345 printk("%s> Error! apidx = %d > MAX_MBSSID_NUM!\n", __func__, apidx); \
346 apidx = MAIN_MBSSID; } } 346 apidx = MAIN_MBSSID; } }
347 347
348#define VALID_WCID(_wcid) ((_wcid) > 0 && (_wcid) < MAX_LEN_OF_MAC_TABLE ) 348#define VALID_WCID(_wcid) ((_wcid) > 0 && (_wcid) < MAX_LEN_OF_MAC_TABLE )