xref: /OK3568_Linux_fs/kernel/drivers/net/wireless/ath/wcn36xx/debug.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * Copyright (c) 2013 Eugene Krasnikov <k.eugene.e@gmail.com>
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Permission to use, copy, modify, and/or distribute this software for any
5*4882a593Smuzhiyun  * purpose with or without fee is hereby granted, provided that the above
6*4882a593Smuzhiyun  * copyright notice and this permission notice appear in all copies.
7*4882a593Smuzhiyun  *
8*4882a593Smuzhiyun  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9*4882a593Smuzhiyun  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10*4882a593Smuzhiyun  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11*4882a593Smuzhiyun  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12*4882a593Smuzhiyun  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13*4882a593Smuzhiyun  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14*4882a593Smuzhiyun  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15*4882a593Smuzhiyun  */
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun #ifndef _WCN36XX_DEBUG_H_
18*4882a593Smuzhiyun #define _WCN36XX_DEBUG_H_
19*4882a593Smuzhiyun 
20*4882a593Smuzhiyun #include <linux/kernel.h>
21*4882a593Smuzhiyun 
22*4882a593Smuzhiyun #define WCN36xx_MAX_DUMP_ARGS	5
23*4882a593Smuzhiyun 
24*4882a593Smuzhiyun #ifdef CONFIG_WCN36XX_DEBUGFS
25*4882a593Smuzhiyun struct wcn36xx_dfs_file {
26*4882a593Smuzhiyun 	struct dentry *dentry;
27*4882a593Smuzhiyun 	u32 value;
28*4882a593Smuzhiyun };
29*4882a593Smuzhiyun 
30*4882a593Smuzhiyun struct wcn36xx_dfs_entry {
31*4882a593Smuzhiyun 	struct dentry *rootdir;
32*4882a593Smuzhiyun 	struct wcn36xx_dfs_file file_bmps_switcher;
33*4882a593Smuzhiyun 	struct wcn36xx_dfs_file file_dump;
34*4882a593Smuzhiyun };
35*4882a593Smuzhiyun 
36*4882a593Smuzhiyun void wcn36xx_debugfs_init(struct wcn36xx *wcn);
37*4882a593Smuzhiyun void wcn36xx_debugfs_exit(struct wcn36xx *wcn);
38*4882a593Smuzhiyun 
39*4882a593Smuzhiyun #else
wcn36xx_debugfs_init(struct wcn36xx * wcn)40*4882a593Smuzhiyun static inline void wcn36xx_debugfs_init(struct wcn36xx *wcn)
41*4882a593Smuzhiyun {
42*4882a593Smuzhiyun }
wcn36xx_debugfs_exit(struct wcn36xx * wcn)43*4882a593Smuzhiyun static inline void wcn36xx_debugfs_exit(struct wcn36xx *wcn)
44*4882a593Smuzhiyun {
45*4882a593Smuzhiyun }
46*4882a593Smuzhiyun 
47*4882a593Smuzhiyun #endif /* CONFIG_WCN36XX_DEBUGFS */
48*4882a593Smuzhiyun 
49*4882a593Smuzhiyun #endif	/* _WCN36XX_DEBUG_H_ */
50