1 /*
2  *  linux/include/asm-arm/ide.h
3  *
4  *  Copyright (C) 1994-1996  Linus Torvalds & authors
5  */
6 
7 /* s390 does not have IDE */
8 
9 #ifndef __ASMS390_IDE_H
10 #define __ASMS390_IDE_H
11 
12 #ifdef __KERNEL__
13 
14 #ifndef MAX_HWIFS
15 #define MAX_HWIFS	0
16 #endif
17 
18 /*
19  * We always use the new IDE port registering,
20  * so these are fixed here.
21  */
22 #define ide_default_io_base(i)		((ide_ioreg_t)0)
23 #define ide_default_irq(b)		(0)
24 
25 #endif /* __KERNEL__ */
26 
27 #endif /* __ASMARM_IDE_H */
28