This source file includes following definitions.
- bdc_dbg_regs
- bdc_dbg_srr
- bdc_dbg_bd_list
- bdc_dump_epsts
1
2
3
4
5
6
7
8
9 #ifndef __LINUX_BDC_DBG_H__
10 #define __LINUX_BDC_DBG_H__
11
12 #include "bdc.h"
13
14 #ifdef CONFIG_USB_GADGET_VERBOSE
15 void bdc_dbg_bd_list(struct bdc *, struct bdc_ep*);
16 void bdc_dbg_srr(struct bdc *, u32);
17 void bdc_dbg_regs(struct bdc *);
18 void bdc_dump_epsts(struct bdc *);
19 #else
20 static inline void bdc_dbg_regs(struct bdc *bdc)
21 { }
22
23 static inline void bdc_dbg_srr(struct bdc *bdc, u32 srr_num)
24 { }
25
26 static inline void bdc_dbg_bd_list(struct bdc *bdc, struct bdc_ep *ep)
27 { }
28
29 static inline void bdc_dump_epsts(struct bdc *bdc)
30 { }
31 #endif
32 #endif