iomux.h 641 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (C) 2010 Uwe Kleine-Koenig, Pengutronix
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License version 2 as published by
  6. * the Free Software Foundation.
  7. */
  8. #ifndef __MACH_IOMUX_H__
  9. #define __MACH_IOMUX_H__
  10. /* This file will go away, please include mach/iomux-mx... directly */
  11. #ifdef CONFIG_ARCH_MX1
  12. #include <mach/iomux-mx1.h>
  13. #endif
  14. #ifdef CONFIG_ARCH_MX2
  15. #include <mach/iomux-mx2x.h>
  16. #ifdef CONFIG_MACH_MX21
  17. #include <mach/iomux-mx21.h>
  18. #endif
  19. #ifdef CONFIG_MACH_MX27
  20. #include <mach/iomux-mx27.h>
  21. #endif
  22. #endif
  23. #endif /* __MACH_IOMUX_H__ */