zd_def.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* zd_def.h
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. */
  17. #ifndef _ZD_DEF_H
  18. #define _ZD_DEF_H
  19. #include <linux/kernel.h>
  20. #include <linux/stringify.h>
  21. #include <linux/device.h>
  22. #include <linux/kernel.h>
  23. typedef u16 __nocast zd_addr_t;
  24. #define dev_printk_f(level, dev, fmt, args...) \
  25. dev_printk(level, dev, "%s() " fmt, __func__, ##args)
  26. #ifdef DEBUG
  27. # define dev_dbg_f(dev, fmt, args...) \
  28. dev_printk_f(KERN_DEBUG, dev, fmt, ## args)
  29. #else
  30. # define dev_dbg_f(dev, fmt, args...) do { (void)(dev); } while (0)
  31. #endif /* DEBUG */
  32. #ifdef DEBUG
  33. # define ZD_ASSERT(x) \
  34. do { \
  35. if (!(x)) { \
  36. pr_debug("%s:%d ASSERT %s VIOLATED!\n", \
  37. __FILE__, __LINE__, __stringify(x)); \
  38. dump_stack(); \
  39. } \
  40. } while (0)
  41. #else
  42. # define ZD_ASSERT(x) do { } while (0)
  43. #endif
  44. #ifdef DEBUG
  45. # define ZD_MEMCLEAR(pointer, size) memset((pointer), 0xff, (size))
  46. #else
  47. # define ZD_MEMCLEAR(pointer, size) do { } while (0)
  48. #endif
  49. #endif /* _ZD_DEF_H */