blob: 8d5806453f164f2b8e35193457d812bff6ea7889 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef _OTG_DBG__H_
#define _OTG_DBG__H_ 1
#if 0
#define bh_otg_dbg(format, arg...) \
printk(format , ## arg)
#else
#define bh_otg_dbg(format, arg...)
#endif
#if 0
#define bh_otg_dbg2(format, arg...) \
printk(format , ## arg)
#else
#define bh_otg_dbg2(format, arg...)
#endif
#if 1
#define bh_otg_dwc(format, arg...) \
printk(format , ## arg)
#else
#define bh_otg_dwc(format, arg...)
#endif
#define bh_otg_info(format, arg...) \
printk(format , ## arg)
#endif /* _OTG_DBG__H_ */
|