This source file includes following definitions.
- bnxt_debug_init
- bnxt_debug_exit
- bnxt_debug_dev_init
- bnxt_debug_dev_exit
1
2
3
4
5
6
7
8
9
10 #include "bnxt_hsi.h"
11 #include "bnxt.h"
12
13 #ifdef CONFIG_DEBUG_FS
14 void bnxt_debug_init(void);
15 void bnxt_debug_exit(void);
16 void bnxt_debug_dev_init(struct bnxt *bp);
17 void bnxt_debug_dev_exit(struct bnxt *bp);
18 #else
19 static inline void bnxt_debug_init(void) {}
20 static inline void bnxt_debug_exit(void) {}
21 static inline void bnxt_debug_dev_init(struct bnxt *bp) {}
22 static inline void bnxt_debug_dev_exit(struct bnxt *bp) {}
23 #endif