Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
debug.h
Go to the documentation of this file.
1 
39 #include "core.h"
40 
41 #ifdef CONFIG_DEBUG_FS
42 extern int dwc3_debugfs_init(struct dwc3 *);
43 extern void dwc3_debugfs_exit(struct dwc3 *);
44 #else
45 static inline int dwc3_debugfs_init(struct dwc3 *d)
46 { return 0; }
47 static inline void dwc3_debugfs_exit(struct dwc3 *d)
48 { }
49 #endif
50