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