diff options
Diffstat (limited to 'drivers/net/wireless/b43/debugfs.h')
-rw-r--r-- | drivers/net/wireless/b43/debugfs.h | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/drivers/net/wireless/b43/debugfs.h b/drivers/net/wireless/b43/debugfs.h index 6eebe858db5a..22ffd02ba554 100644 --- a/drivers/net/wireless/b43/debugfs.h +++ b/drivers/net/wireless/b43/debugfs.h | |||
@@ -10,6 +10,8 @@ enum b43_dyndbg { /* Dynamic debugging features */ | |||
10 | B43_DBG_DMAVERBOSE, | 10 | B43_DBG_DMAVERBOSE, |
11 | B43_DBG_PWORK_FAST, | 11 | B43_DBG_PWORK_FAST, |
12 | B43_DBG_PWORK_STOP, | 12 | B43_DBG_PWORK_STOP, |
13 | B43_DBG_LO, | ||
14 | B43_DBG_FIRMWARE, | ||
13 | __B43_NR_DYNDBG, | 15 | __B43_NR_DYNDBG, |
14 | }; | 16 | }; |
15 | 17 | ||
@@ -35,9 +37,15 @@ struct b43_dfsentry { | |||
35 | struct b43_wldev *dev; | 37 | struct b43_wldev *dev; |
36 | struct dentry *subdir; | 38 | struct dentry *subdir; |
37 | 39 | ||
40 | struct b43_dfs_file file_shm16read; | ||
41 | struct b43_dfs_file file_shm16write; | ||
42 | struct b43_dfs_file file_shm32read; | ||
43 | struct b43_dfs_file file_shm32write; | ||
44 | struct b43_dfs_file file_mmio16read; | ||
45 | struct b43_dfs_file file_mmio16write; | ||
46 | struct b43_dfs_file file_mmio32read; | ||
47 | struct b43_dfs_file file_mmio32write; | ||
38 | struct b43_dfs_file file_tsf; | 48 | struct b43_dfs_file file_tsf; |
39 | struct b43_dfs_file file_ucode_regs; | ||
40 | struct b43_dfs_file file_shm; | ||
41 | struct b43_dfs_file file_txstat; | 49 | struct b43_dfs_file file_txstat; |
42 | struct b43_dfs_file file_txpower_g; | 50 | struct b43_dfs_file file_txpower_g; |
43 | struct b43_dfs_file file_restart; | 51 | struct b43_dfs_file file_restart; |
@@ -45,6 +53,18 @@ struct b43_dfsentry { | |||
45 | 53 | ||
46 | struct b43_txstatus_log txstatlog; | 54 | struct b43_txstatus_log txstatlog; |
47 | 55 | ||
56 | /* The cached address for the next mmio16read file read */ | ||
57 | u16 mmio16read_next; | ||
58 | /* The cached address for the next mmio32read file read */ | ||
59 | u16 mmio32read_next; | ||
60 | |||
61 | /* The cached address for the next shm16read file read */ | ||
62 | u32 shm16read_routing_next; | ||
63 | u32 shm16read_addr_next; | ||
64 | /* The cached address for the next shm32read file read */ | ||
65 | u32 shm32read_routing_next; | ||
66 | u32 shm32read_addr_next; | ||
67 | |||
48 | /* Enabled/Disabled list for the dynamic debugging features. */ | 68 | /* Enabled/Disabled list for the dynamic debugging features. */ |
49 | u32 dyn_debug[__B43_NR_DYNDBG]; | 69 | u32 dyn_debug[__B43_NR_DYNDBG]; |
50 | /* Dentries for the dynamic debugging entries. */ | 70 | /* Dentries for the dynamic debugging entries. */ |