sdio-debug-levels.h 503 B

12345678910111213141516171819202122
  1. /*
  2. * debug levels control file for the i2400m module's
  3. */
  4. #ifndef __debug_levels__h__
  5. #define __debug_levels__h__
  6. /* Maximum compile and run time debug level for all submodules */
  7. #define D_MODULENAME i2400m_sdio
  8. #define D_MASTER CONFIG_WIMAX_I2400M_DEBUG_LEVEL
  9. #include <linux/wimax/debug.h>
  10. /* List of all the enabled modules */
  11. enum d_module {
  12. D_SUBMODULE_DECLARE(main),
  13. D_SUBMODULE_DECLARE(tx),
  14. D_SUBMODULE_DECLARE(rx),
  15. D_SUBMODULE_DECLARE(fw)
  16. };
  17. #endif /* #ifndef __debug_levels__h__ */