ide.h 527 B

123456789101112131415161718192021222324
  1. /*
  2. * arch/arm/include/asm/ide.h
  3. *
  4. * Copyright (C) 1994-1996 Linus Torvalds & authors
  5. */
  6. /*
  7. * This file contains the ARM architecture specific IDE code.
  8. */
  9. #ifndef __ASMARM_IDE_H
  10. #define __ASMARM_IDE_H
  11. #ifdef __KERNEL__
  12. #define __ide_mm_insw(port,addr,len) readsw(port,addr,len)
  13. #define __ide_mm_insl(port,addr,len) readsl(port,addr,len)
  14. #define __ide_mm_outsw(port,addr,len) writesw(port,addr,len)
  15. #define __ide_mm_outsl(port,addr,len) writesl(port,addr,len)
  16. #endif /* __KERNEL__ */
  17. #endif /* __ASMARM_IDE_H */