debug-levels.h 864 B

123456789101112131415161718192021222324252627282930313233
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Intel Wireless WiMAX Connection 2400m
  4. * Debug levels control file for the i2400m 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 i2400m
  13. #define D_MASTER CONFIG_WIMAX_I2400M_DEBUG_LEVEL
  14. #include <linux/wimax/debug.h>
  15. /* List of all the enabled modules */
  16. enum d_module {
  17. D_SUBMODULE_DECLARE(control),
  18. D_SUBMODULE_DECLARE(driver),
  19. D_SUBMODULE_DECLARE(debugfs),
  20. D_SUBMODULE_DECLARE(fw),
  21. D_SUBMODULE_DECLARE(netdev),
  22. D_SUBMODULE_DECLARE(rfkill),
  23. D_SUBMODULE_DECLARE(rx),
  24. D_SUBMODULE_DECLARE(sysfs),
  25. D_SUBMODULE_DECLARE(tx),
  26. };
  27. #endif /* #ifndef __debug_levels__h__ */