Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  *  arch/arm/include/asm/ide.h
0004  *
0005  *  Copyright (C) 1994-1996  Linus Torvalds & authors
0006  */
0007 
0008 /*
0009  *  This file contains the ARM architecture specific IDE code.
0010  */
0011 
0012 #ifndef __ASMARM_IDE_H
0013 #define __ASMARM_IDE_H
0014 
0015 #ifdef __KERNEL__
0016 
0017 #define __ide_mm_insw(port,addr,len)    readsw(port,addr,len)
0018 #define __ide_mm_insl(port,addr,len)    readsl(port,addr,len)
0019 #define __ide_mm_outsw(port,addr,len)   writesw(port,addr,len)
0020 #define __ide_mm_outsl(port,addr,len)   writesl(port,addr,len)
0021 
0022 #endif /* __KERNEL__ */
0023 
0024 #endif /* __ASMARM_IDE_H */