io.h 388 B

123456789101112131415161718
  1. /* arch/arm/plat-s3c/include/mach/io.h
  2. *
  3. * Copyright 2008 Simtec Electronics
  4. * Ben Dooks <ben-linux@fluff.org>
  5. *
  6. * Default IO routines for plat-s3c based systems, such as S3C24A0
  7. */
  8. #ifndef __ASM_ARM_ARCH_IO_H
  9. #define __ASM_ARM_ARCH_IO_H
  10. /* No current ISA/PCI bus support. */
  11. #define __io(a) __typesafe_io(a)
  12. #define __mem_pci(a) (a)
  13. #define IO_SPACE_LIMIT (0xFFFFFFFF)
  14. #endif