diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-01-17 13:09:36 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2012-01-18 06:59:51 -0500 |
commit | d6a434d60e064a5f2bef1c13ca5ed84bfa6b8b4f (patch) | |
tree | 9920f4f6552420f83b1c65000ed3c5840b49d272 /drivers/net/wireless/ath/ath6kl/debug.c | |
parent | 3b1b7d0985fdb26403678e49938a668ef7f772ea (diff) |
ath6kl: create ath6kl_core.ko
Now ath6kl is ready for splitting core code to ath6kl_core.ko module.
This also makes it possible to link both sdio and usb code to kernel
at the same time, which earlier failed miserably.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/debug.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/debug.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/debug.c b/drivers/net/wireless/ath/ath6kl/debug.c index 4ba6560f0bf3..6b546dc66728 100644 --- a/drivers/net/wireless/ath/ath6kl/debug.c +++ b/drivers/net/wireless/ath/ath6kl/debug.c | |||
@@ -54,6 +54,7 @@ int ath6kl_printk(const char *level, const char *fmt, ...) | |||
54 | 54 | ||
55 | return rtn; | 55 | return rtn; |
56 | } | 56 | } |
57 | EXPORT_SYMBOL(ath6kl_printk); | ||
57 | 58 | ||
58 | #ifdef CONFIG_ATH6KL_DEBUG | 59 | #ifdef CONFIG_ATH6KL_DEBUG |
59 | 60 | ||
@@ -74,6 +75,7 @@ void ath6kl_dbg(enum ATH6K_DEBUG_MASK mask, const char *fmt, ...) | |||
74 | 75 | ||
75 | va_end(args); | 76 | va_end(args); |
76 | } | 77 | } |
78 | EXPORT_SYMBOL(ath6kl_dbg); | ||
77 | 79 | ||
78 | void ath6kl_dbg_dump(enum ATH6K_DEBUG_MASK mask, | 80 | void ath6kl_dbg_dump(enum ATH6K_DEBUG_MASK mask, |
79 | const char *msg, const char *prefix, | 81 | const char *msg, const char *prefix, |
@@ -86,6 +88,7 @@ void ath6kl_dbg_dump(enum ATH6K_DEBUG_MASK mask, | |||
86 | print_hex_dump_bytes(prefix, DUMP_PREFIX_OFFSET, buf, len); | 88 | print_hex_dump_bytes(prefix, DUMP_PREFIX_OFFSET, buf, len); |
87 | } | 89 | } |
88 | } | 90 | } |
91 | EXPORT_SYMBOL(ath6kl_dbg_dump); | ||
89 | 92 | ||
90 | #define REG_OUTPUT_LEN_PER_LINE 25 | 93 | #define REG_OUTPUT_LEN_PER_LINE 25 |
91 | #define REGTYPE_STR_LEN 100 | 94 | #define REGTYPE_STR_LEN 100 |