diff options
Diffstat (limited to 'arch/sh/boards/se/7619/io.c')
-rw-r--r-- | arch/sh/boards/se/7619/io.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/arch/sh/boards/se/7619/io.c b/arch/sh/boards/se/7619/io.c index 176f1f39cd9d..2f105c3dd818 100644 --- a/arch/sh/boards/se/7619/io.c +++ b/arch/sh/boards/se/7619/io.c | |||
@@ -25,78 +25,78 @@ static inline void delay(void) | |||
25 | printk("bad I/O operation (%s) for port 0x%lx at 0x%08x\n", \ | 25 | printk("bad I/O operation (%s) for port 0x%lx at 0x%08x\n", \ |
26 | #name, (port), (__u32) __builtin_return_address(0)) | 26 | #name, (port), (__u32) __builtin_return_address(0)) |
27 | 27 | ||
28 | unsigned char se7619___inb(unsigned long port) | 28 | unsigned char se7619_inb(unsigned long port) |
29 | { | 29 | { |
30 | badio(inb, port); | 30 | badio(inb, port); |
31 | return 0; | 31 | return 0; |
32 | } | 32 | } |
33 | 33 | ||
34 | unsigned char se7619___inb_p(unsigned long port) | 34 | unsigned char se7619_inb_p(unsigned long port) |
35 | { | 35 | { |
36 | badio(inb_p, port); | 36 | badio(inb_p, port); |
37 | delay(); | 37 | delay(); |
38 | return 0; | 38 | return 0; |
39 | } | 39 | } |
40 | 40 | ||
41 | unsigned short se7619___inw(unsigned long port) | 41 | unsigned short se7619_inw(unsigned long port) |
42 | { | 42 | { |
43 | badio(inw, port); | 43 | badio(inw, port); |
44 | return 0; | 44 | return 0; |
45 | } | 45 | } |
46 | 46 | ||
47 | unsigned int se7619___inl(unsigned long port) | 47 | unsigned int se7619_inl(unsigned long port) |
48 | { | 48 | { |
49 | badio(inl, port); | 49 | badio(inl, port); |
50 | return 0; | 50 | return 0; |
51 | } | 51 | } |
52 | 52 | ||
53 | void se7619___outb(unsigned char value, unsigned long port) | 53 | void se7619_outb(unsigned char value, unsigned long port) |
54 | { | 54 | { |
55 | badio(outb, port); | 55 | badio(outb, port); |
56 | } | 56 | } |
57 | 57 | ||
58 | void se7619___outb_p(unsigned char value, unsigned long port) | 58 | void se7619_outb_p(unsigned char value, unsigned long port) |
59 | { | 59 | { |
60 | badio(outb_p, port); | 60 | badio(outb_p, port); |
61 | delay(); | 61 | delay(); |
62 | } | 62 | } |
63 | 63 | ||
64 | void se7619___outw(unsigned short value, unsigned long port) | 64 | void se7619_outw(unsigned short value, unsigned long port) |
65 | { | 65 | { |
66 | badio(outw, port); | 66 | badio(outw, port); |
67 | } | 67 | } |
68 | 68 | ||
69 | void se7619___outl(unsigned int value, unsigned long port) | 69 | void se7619_outl(unsigned int value, unsigned long port) |
70 | { | 70 | { |
71 | badio(outl, port); | 71 | badio(outl, port); |
72 | } | 72 | } |
73 | 73 | ||
74 | void se7619___insb(unsigned long port, void *addr, unsigned long count) | 74 | void se7619_insb(unsigned long port, void *addr, unsigned long count) |
75 | { | 75 | { |
76 | badio(inw, port); | 76 | badio(inw, port); |
77 | } | 77 | } |
78 | 78 | ||
79 | void se7619___insw(unsigned long port, void *addr, unsigned long count) | 79 | void se7619_insw(unsigned long port, void *addr, unsigned long count) |
80 | { | 80 | { |
81 | badio(inw, port); | 81 | badio(inw, port); |
82 | } | 82 | } |
83 | 83 | ||
84 | void se7619___insl(unsigned long port, void *addr, unsigned long count) | 84 | void se7619_insl(unsigned long port, void *addr, unsigned long count) |
85 | { | 85 | { |
86 | badio(insl, port); | 86 | badio(insl, port); |
87 | } | 87 | } |
88 | 88 | ||
89 | void se7619___outsb(unsigned long port, const void *addr, unsigned long count) | 89 | void se7619_outsb(unsigned long port, const void *addr, unsigned long count) |
90 | { | 90 | { |
91 | badio(insl, port); | 91 | badio(insl, port); |
92 | } | 92 | } |
93 | 93 | ||
94 | void se7619___outsw(unsigned long port, const void *addr, unsigned long count) | 94 | void se7619_outsw(unsigned long port, const void *addr, unsigned long count) |
95 | { | 95 | { |
96 | badio(insl, port); | 96 | badio(insl, port); |
97 | } | 97 | } |
98 | 98 | ||
99 | void se7619___outsl(unsigned long port, const void *addr, unsigned long count) | 99 | void se7619_outsl(unsigned long port, const void *addr, unsigned long count) |
100 | { | 100 | { |
101 | badio(outsw, port); | 101 | badio(outsw, port); |
102 | } | 102 | } |