io.c 425 B

1234567891011121314151617181920212223242526
  1. /*
  2. * arch/sh/boards/saturn/io.c
  3. *
  4. * I/O routines for the Sega Saturn.
  5. *
  6. * Copyright (C) 2002 Paul Mundt
  7. *
  8. * Released under the terms of the GNU GPL v2.0.
  9. */
  10. #include <asm/saturn/io.h>
  11. #include <asm/machvec.h>
  12. unsigned long saturn_isa_port2addr(unsigned long offset)
  13. {
  14. return offset;
  15. }
  16. void *saturn_ioremap(unsigned long offset, unsigned long size)
  17. {
  18. return (void *)offset;
  19. }
  20. void saturn_iounmap(void *addr)
  21. {
  22. }