debug.h (6bc364315aac6ab256ce3cdc00aa90cb57279a1f) | debug.h (b9b6ee603923be45c4022a0dce5fa8ccf4284524) |
---|---|
1/* 2 * Copyright (c) 2011 Atheros Communications Inc. 3 * 4 * Permission to use, copy, modify, and/or distribute this software for any 5 * purpose with or without fee is hereby granted, provided that the above 6 * copyright notice and this permission notice appear in all copies. 7 * 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --- 20 unchanged lines hidden (view full) --- 29 ATH6KL_DBG_HTC_RECV = BIT(6), /* htc recv */ 30 ATH6KL_DBG_IRQ = BIT(7), /* interrupt processing */ 31 ATH6KL_DBG_PM = BIT(8), /* power management */ 32 ATH6KL_DBG_WLAN_NODE = BIT(9), /* general wlan node tracing */ 33 ATH6KL_DBG_WMI = BIT(10), /* wmi tracing */ 34 ATH6KL_DBG_TRC = BIT(11), /* generic func tracing */ 35 ATH6KL_DBG_SCATTER = BIT(12), /* hif scatter tracing */ 36 ATH6KL_DBG_WLAN_CFG = BIT(13), /* cfg80211 i/f file tracing */ | 1/* 2 * Copyright (c) 2011 Atheros Communications Inc. 3 * 4 * Permission to use, copy, modify, and/or distribute this software for any 5 * purpose with or without fee is hereby granted, provided that the above 6 * copyright notice and this permission notice appear in all copies. 7 * 8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES --- 20 unchanged lines hidden (view full) --- 29 ATH6KL_DBG_HTC_RECV = BIT(6), /* htc recv */ 30 ATH6KL_DBG_IRQ = BIT(7), /* interrupt processing */ 31 ATH6KL_DBG_PM = BIT(8), /* power management */ 32 ATH6KL_DBG_WLAN_NODE = BIT(9), /* general wlan node tracing */ 33 ATH6KL_DBG_WMI = BIT(10), /* wmi tracing */ 34 ATH6KL_DBG_TRC = BIT(11), /* generic func tracing */ 35 ATH6KL_DBG_SCATTER = BIT(12), /* hif scatter tracing */ 36 ATH6KL_DBG_WLAN_CFG = BIT(13), /* cfg80211 i/f file tracing */ |
37 ATH6KL_DBG_RAW_BYTES = BIT(14), /* dump tx/rx and wmi frames */ | 37 ATH6KL_DBG_RAW_BYTES = BIT(14), /* dump tx/rx frames */ |
38 ATH6KL_DBG_AGGR = BIT(15), /* aggregation */ 39 ATH6KL_DBG_SDIO = BIT(16), 40 ATH6KL_DBG_SDIO_DUMP = BIT(17), 41 ATH6KL_DBG_BOOT = BIT(18), /* driver init and fw boot */ | 38 ATH6KL_DBG_AGGR = BIT(15), /* aggregation */ 39 ATH6KL_DBG_SDIO = BIT(16), 40 ATH6KL_DBG_SDIO_DUMP = BIT(17), 41 ATH6KL_DBG_BOOT = BIT(18), /* driver init and fw boot */ |
42 ATH6KL_DBG_WMI_DUMP = BIT(19), |
|
42 ATH6KL_DBG_ANY = 0xffffffff /* enable all logs */ 43}; 44 45extern unsigned int debug_mask; 46extern int ath6kl_printk(const char *level, const char *fmt, ...) 47 __attribute__ ((format (printf, 2, 3))); 48 49#define ath6kl_info(fmt, ...) \ --- 88 unchanged lines hidden --- | 43 ATH6KL_DBG_ANY = 0xffffffff /* enable all logs */ 44}; 45 46extern unsigned int debug_mask; 47extern int ath6kl_printk(const char *level, const char *fmt, ...) 48 __attribute__ ((format (printf, 2, 3))); 49 50#define ath6kl_info(fmt, ...) \ --- 88 unchanged lines hidden --- |