debug.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * debug.h - Debugging Definitions and Declarations;
  11. *
  12. * this file is a subset of the original that includes only those
  13. * definitions and declaration needed for toolkit programs;
  14. *
  15. *--------------------------------------------------------------------*/
  16. #ifndef DEBUG_HEADER
  17. #define DEBUG_HEADER
  18. /*====================================================================*
  19. * constants;
  20. *--------------------------------------------------------------------*/
  21. #define QUALCOMM_DEBUG 0
  22. #define QUALCOMM_TRACE 0
  23. /*====================================================================*
  24. *
  25. *--------------------------------------------------------------------*/
  26. #if QUALCOMM_TRACE
  27. #define EVENT(s) printk(KERN_DEBUG "---[ %s ]---\n", (s))
  28. #define ENTER printk(KERN_DEBUG "-->[ %s:%d ]\n", __func__,__LINE__)
  29. #define ABORT printk(KERN_DEBUG "<--( %s:%d )\n", __func__,__LINE__)
  30. #define LEAVE printk(KERN_DEBUG "<--[ %s:%d ]\n", __func__,__LINE__)
  31. #define CRUMB printk(KERN_DEBUG "... %s:%d\n",__func__,__LINE__)
  32. #define TRACE error (0, 0, "%s (%d)", __FILE__, __LINE__);
  33. #else
  34. #define EVENT {}
  35. #define ENTER {}
  36. #define ABORT {}
  37. #define LEAVE {}
  38. #define CRUMB {}
  39. #define TRACE {}
  40. #endif
  41. /*====================================================================*
  42. *
  43. *--------------------------------------------------------------------*/
  44. #if QUALCOMM_DEBUG
  45. #define address(e) if (!(e)) { printk ("%s(%d): address %s is null\n",__func__,__LINE__,#e); }
  46. #define confirm(e) if (!(e)) { printk ("%s(%d): assertion %s is wrong\n",__func__,__LINE__, #e); }
  47. #else
  48. #define address(e) {}
  49. #define confirm(e) {}
  50. #endif
  51. /*====================================================================*
  52. *
  53. *--------------------------------------------------------------------*/
  54. #endif