io.h 555 B

123456789101112131415161718192021
  1. /*
  2. * linux/arch/arm/mach-mmp/include/mach/io.h
  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 version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef __ASM_MACH_IO_H
  9. #define __ASM_MACH_IO_H
  10. #define IO_SPACE_LIMIT 0xffffffff
  11. /*
  12. * We don't actually have real ISA nor PCI buses, but there is so many
  13. * drivers out there that might just work if we fake them...
  14. */
  15. #define __io(a) __typesafe_io(a)
  16. #define __mem_pci(a) (a)
  17. #endif /* __ASM_MACH_IO_H */