io.h 539 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
  3. */
  4. /*
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef __MACH_MXS_IO_H__
  10. #define __MACH_MXS_IO_H__
  11. /* Allow IO space to be anywhere in the memory */
  12. #define IO_SPACE_LIMIT 0xffffffff
  13. /* io address mapping macro */
  14. #define __io(a) __typesafe_io(a)
  15. #define __mem_pci(a) (a)
  16. #endif /* __MACH_MXS_IO_H__ */