aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/b43/main.h')
-rw-r--r--drivers/net/wireless/b43/main.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/main.h b/drivers/net/wireless/b43/main.h
index e6d90f377d9b..40abcf5d1b43 100644
--- a/drivers/net/wireless/b43/main.h
+++ b/drivers/net/wireless/b43/main.h
@@ -40,6 +40,24 @@
40 40
41 41
42extern int b43_modparam_qos; 42extern int b43_modparam_qos;
43extern int b43_modparam_verbose;
44
45/* Logmessage verbosity levels. Update the b43_modparam_verbose helptext, if
46 * you add or remove levels. */
47enum b43_verbosity {
48 B43_VERBOSITY_ERROR,
49 B43_VERBOSITY_WARN,
50 B43_VERBOSITY_INFO,
51 B43_VERBOSITY_DEBUG,
52 __B43_VERBOSITY_AFTERLAST, /* keep last */
53
54 B43_VERBOSITY_MAX = __B43_VERBOSITY_AFTERLAST - 1,
55#if B43_DEBUG
56 B43_VERBOSITY_DEFAULT = B43_VERBOSITY_DEBUG,
57#else
58 B43_VERBOSITY_DEFAULT = B43_VERBOSITY_INFO,
59#endif
60};
43 61
44 62
45/* Lightweight function to convert a frequency (in Mhz) to a channel number. */ 63/* Lightweight function to convert a frequency (in Mhz) to a channel number. */