diff options
author | Kyle McMartin <kyle@mcmartin.ca> | 2008-07-28 23:02:13 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@hera.kernel.org> | 2008-10-10 12:32:29 -0400 |
commit | deae26bf6a10e47983606f5df080b91e97650ead (patch) | |
tree | 84a8a68145d0f713d7c5a1f9e6b3b03be9b3a4c8 /include/asm-parisc/ide.h | |
parent | 6c86cb8237bf08443806089130dc108051569a93 (diff) |
parisc: move include/asm-parisc to arch/parisc/include/asm
Diffstat (limited to 'include/asm-parisc/ide.h')
-rw-r--r-- | include/asm-parisc/ide.h | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/include/asm-parisc/ide.h b/include/asm-parisc/ide.h deleted file mode 100644 index c246ef75017d..000000000000 --- a/include/asm-parisc/ide.h +++ /dev/null | |||
@@ -1,61 +0,0 @@ | |||
1 | /* | ||
2 | * linux/include/asm-parisc/ide.h | ||
3 | * | ||
4 | * Copyright (C) 1994-1996 Linus Torvalds & authors | ||
5 | */ | ||
6 | |||
7 | /* | ||
8 | * This file contains the PARISC architecture specific IDE code. | ||
9 | */ | ||
10 | |||
11 | #ifndef __ASM_PARISC_IDE_H | ||
12 | #define __ASM_PARISC_IDE_H | ||
13 | |||
14 | #ifdef __KERNEL__ | ||
15 | |||
16 | #define ide_request_irq(irq,hand,flg,dev,id) request_irq((irq),(hand),(flg),(dev),(id)) | ||
17 | #define ide_free_irq(irq,dev_id) free_irq((irq), (dev_id)) | ||
18 | #define ide_request_region(from,extent,name) request_region((from), (extent), (name)) | ||
19 | #define ide_release_region(from,extent) release_region((from), (extent)) | ||
20 | /* Generic I/O and MEMIO string operations. */ | ||
21 | |||
22 | #define __ide_insw insw | ||
23 | #define __ide_insl insl | ||
24 | #define __ide_outsw outsw | ||
25 | #define __ide_outsl outsl | ||
26 | |||
27 | static __inline__ void __ide_mm_insw(void __iomem *port, void *addr, u32 count) | ||
28 | { | ||
29 | while (count--) { | ||
30 | *(u16 *)addr = __raw_readw(port); | ||
31 | addr += 2; | ||
32 | } | ||
33 | } | ||
34 | |||
35 | static __inline__ void __ide_mm_insl(void __iomem *port, void *addr, u32 count) | ||
36 | { | ||
37 | while (count--) { | ||
38 | *(u32 *)addr = __raw_readl(port); | ||
39 | addr += 4; | ||
40 | } | ||
41 | } | ||
42 | |||
43 | static __inline__ void __ide_mm_outsw(void __iomem *port, void *addr, u32 count) | ||
44 | { | ||
45 | while (count--) { | ||
46 | __raw_writew(*(u16 *)addr, port); | ||
47 | addr += 2; | ||
48 | } | ||
49 | } | ||
50 | |||
51 | static __inline__ void __ide_mm_outsl(void __iomem *port, void *addr, u32 count) | ||
52 | { | ||
53 | while (count--) { | ||
54 | __raw_writel(*(u32 *)addr, port); | ||
55 | addr += 4; | ||
56 | } | ||
57 | } | ||
58 | |||
59 | #endif /* __KERNEL__ */ | ||
60 | |||
61 | #endif /* __ASM_PARISC_IDE_H */ | ||