diff options
author | Holger Schurig <hs4233@mail.mn-solutions.de> | 2007-05-25 00:07:38 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2007-06-11 14:28:36 -0400 |
commit | 42fff92aa53fd5903f318e16fbbcc9176403562c (patch) | |
tree | 015f30d9bfdce1b4a54cb5c048e175bcf6015b57 /drivers/net | |
parent | 5c20676fcda300c023d55ba1221b5ff4ab749537 (diff) |
[PATCH] libertas: remove __FILE__ from debug output
Remove filename from debug output because it's way too long.
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/libertas/defs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/wireless/libertas/defs.h b/drivers/net/wireless/libertas/defs.h index 80dd9ea19c8e..51050cf736b7 100644 --- a/drivers/net/wireless/libertas/defs.h +++ b/drivers/net/wireless/libertas/defs.h | |||
@@ -51,10 +51,10 @@ static inline void lbs_dbg_hex(char *prompt, u8 * buf, int len) | |||
51 | #define lbs_dbg_hex(x,y,z) do {} while (0) | 51 | #define lbs_dbg_hex(x,y,z) do {} while (0) |
52 | #endif | 52 | #endif |
53 | 53 | ||
54 | #define ENTER() lbs_pr_debug(1, "Enter: %s, %s:%i\n", \ | 54 | #define ENTER() lbs_pr_debug(1, "Enter: %s:%i\n", \ |
55 | __FUNCTION__, __FILE__, __LINE__) | 55 | __FUNCTION__, __LINE__) |
56 | #define LEAVE() lbs_pr_debug(1, "Leave: %s, %s:%i\n", \ | 56 | #define LEAVE() lbs_pr_debug(1, "Leave: %s:%i\n", \ |
57 | __FUNCTION__, __FILE__, __LINE__) | 57 | __FUNCTION__, __LINE__) |
58 | 58 | ||
59 | /** Buffer Constants */ | 59 | /** Buffer Constants */ |
60 | 60 | ||