123456789101112131415161718192021222324252627 |
- #include "core.h"
- #ifdef CONFIG_DEBUG_FS
- extern int dwc2_debugfs_init(struct dwc2_hsotg *);
- extern void dwc2_debugfs_exit(struct dwc2_hsotg *);
- #else
- static inline int dwc2_debugfs_init(struct dwc2_hsotg *hsotg)
- { return 0; }
- static inline void dwc2_debugfs_exit(struct dwc2_hsotg *hsotg)
- { }
- #endif
|