debug-levels.h 798 B

1234567891011121314151617181920212223242526272829
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Linux WiMAX Stack
  4. * Debug levels control file for the wimax module
  5. *
  6. * Copyright (C) 2007-2008 Intel Corporation <linux-wimax@intel.com>
  7. * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
  8. */
  9. #ifndef __debug_levels__h__
  10. #define __debug_levels__h__
  11. /* Maximum compile and run time debug level for all submodules */
  12. #define D_MODULENAME wimax
  13. #define D_MASTER CONFIG_WIMAX_DEBUG_LEVEL
  14. #include <linux/wimax/debug.h>
  15. /* List of all the enabled modules */
  16. enum d_module {
  17. D_SUBMODULE_DECLARE(debugfs),
  18. D_SUBMODULE_DECLARE(id_table),
  19. D_SUBMODULE_DECLARE(op_msg),
  20. D_SUBMODULE_DECLARE(op_reset),
  21. D_SUBMODULE_DECLARE(op_rfkill),
  22. D_SUBMODULE_DECLARE(op_state_get),
  23. D_SUBMODULE_DECLARE(stack),
  24. };
  25. #endif /* #ifndef __debug_levels__h__ */