diff options
Diffstat (limited to 'arch/m32r/kernel/io_mappi2.c')
-rw-r--r-- | arch/m32r/kernel/io_mappi2.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/arch/m32r/kernel/io_mappi2.c b/arch/m32r/kernel/io_mappi2.c index 5c03504bf653..df3c729cb3e0 100644 --- a/arch/m32r/kernel/io_mappi2.c +++ b/arch/m32r/kernel/io_mappi2.c | |||
@@ -33,12 +33,9 @@ extern void pcc_iowrite_word(int, unsigned long, void *, size_t, size_t, int); | |||
33 | 33 | ||
34 | static inline void *_port2addr(unsigned long port) | 34 | static inline void *_port2addr(unsigned long port) |
35 | { | 35 | { |
36 | return (void *)(port + NONCACHE_OFFSET); | 36 | return (void *)(port | (NONCACHE_OFFSET)); |
37 | } | 37 | } |
38 | 38 | ||
39 | #define LAN_IOSTART 0x300 | ||
40 | #define LAN_IOEND 0x320 | ||
41 | |||
42 | #if defined(CONFIG_IDE) && !defined(CONFIG_M32R_CFC) | 39 | #if defined(CONFIG_IDE) && !defined(CONFIG_M32R_CFC) |
43 | static inline void *__port2addr_ata(unsigned long port) | 40 | static inline void *__port2addr_ata(unsigned long port) |
44 | { | 41 | { |
@@ -59,15 +56,17 @@ static inline void *__port2addr_ata(unsigned long port) | |||
59 | } | 56 | } |
60 | #endif | 57 | #endif |
61 | 58 | ||
59 | #define LAN_IOSTART 0xa0000300 | ||
60 | #define LAN_IOEND 0xa0000320 | ||
62 | #ifdef CONFIG_CHIP_OPSP | 61 | #ifdef CONFIG_CHIP_OPSP |
63 | static inline void *_port2addr_ne(unsigned long port) | 62 | static inline void *_port2addr_ne(unsigned long port) |
64 | { | 63 | { |
65 | return (void *)(port + NONCACHE_OFFSET + 0x10000000); | 64 | return (void *)(port + 0x10000000); |
66 | } | 65 | } |
67 | #else | 66 | #else |
68 | static inline void *_port2addr_ne(unsigned long port) | 67 | static inline void *_port2addr_ne(unsigned long port) |
69 | { | 68 | { |
70 | return (void *)(port + NONCACHE_OFFSET + 0x04000000); | 69 | return (void *)(port + 0x04000000); |
71 | } | 70 | } |
72 | #endif | 71 | #endif |
73 | static inline void *_port2addr_usb(unsigned long port) | 72 | static inline void *_port2addr_usb(unsigned long port) |