io.h 661 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (C) 2005 Sigmatel Inc
  3. *
  4. * Copyright 2008 Freescale Semiconductor, Inc. All Rights Reserved.
  5. * Copyright 2008 Embedded Alley Solutions, Inc All Rights Reserved.
  6. */
  7. /*
  8. * The code contained herein is licensed under the GNU General Public
  9. * License. You may obtain a copy of the GNU General Public License
  10. * Version 2 or later at the following locations:
  11. *
  12. * http://www.opensource.org/licenses/gpl-license.html
  13. * http://www.gnu.org/copyleft/gpl.html
  14. */
  15. #ifndef __ASM_ARM_ARCH_IO_H
  16. #define __ASM_ARM_ARCH_IO_H
  17. #define IO_SPACE_LIMIT 0xffffffff
  18. #define __io(a) __typesafe_io(a)
  19. #define __mem_pci(a) (a)
  20. #define __mem_isa(a) (a)
  21. #endif