module.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * arch/arm/mach-ns9xxx/include/mach/module.h
  3. *
  4. * Copyright (C) 2007 by Digi International Inc.
  5. * All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License version 2 as published by
  9. * the Free Software Foundation.
  10. */
  11. #ifndef __ASM_ARCH_MODULE_H
  12. #define __ASM_ARCH_MODULE_H
  13. #include <asm/mach-types.h>
  14. #define module_is_cc7ucamry() (0 \
  15. || machine_is_cc7ucamry() \
  16. )
  17. #define module_is_cc9c() (0 \
  18. )
  19. #define module_is_cc9p9210() (0 \
  20. || machine_is_cc9p9210() \
  21. || machine_is_cc9p9210js() \
  22. )
  23. #define module_is_cc9p9215() (0 \
  24. || machine_is_cc9p9215() \
  25. || machine_is_cc9p9215js() \
  26. )
  27. #define module_is_cc9p9360() (0 \
  28. || machine_is_cc9p9360dev() \
  29. || machine_is_cc9p9360js() \
  30. )
  31. #define module_is_cc9p9750() (0 \
  32. || machine_is_a9m9750() \
  33. || machine_is_cc9p9750js() \
  34. || machine_is_cc9p9750val() \
  35. )
  36. #define module_is_ccw9c() (0 \
  37. )
  38. #define module_is_inc20otter() (0 \
  39. || machine_is_inc20otter() \
  40. )
  41. #define module_is_otter() (0 \
  42. || machine_is_otter() \
  43. )
  44. #endif /* ifndef __ASM_ARCH_MODULE_H */