mx6-pins.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (C) 2013 Boundary Devices Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  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. * You should have received a copy of the GNU General Public License along
  13. * with this program; if not, write to the Free Software Foundation, Inc.,
  14. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  15. */
  16. #ifndef __ASM_ARCH_MX6_PINS_H__
  17. #define __ASM_ARCH_MX6_PINS_H__
  18. #ifdef CONFIG_MX6Q
  19. #include "mx6q_pins.h"
  20. #else
  21. #if defined(CONFIG_MX6DL) || defined(CONFIG_MX6S)
  22. #include "mx6dl_pins.h"
  23. #else
  24. #error "Please select cpu"
  25. #endif /* CONFIG_MX6DL or CONFIG_MX6S */
  26. #endif /* CONFIG_MX6Q */
  27. #endif /*__ASM_ARCH_MX6_PINS_H__ */