diff options
Diffstat (limited to 'arch/sh/boards/titan/io.c')
-rw-r--r-- | arch/sh/boards/titan/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/boards/titan/io.c b/arch/sh/boards/titan/io.c index b886fd233a66..48f3494f55b1 100644 --- a/arch/sh/boards/titan/io.c +++ b/arch/sh/boards/titan/io.c | |||
@@ -30,10 +30,10 @@ static inline void delay(void) | |||
30 | ctrl_inw(0xa0000000); | 30 | ctrl_inw(0xa0000000); |
31 | } | 31 | } |
32 | 32 | ||
33 | static inline volatile u16 *port2adr(unsigned int port) | 33 | static inline unsigned int port2adr(unsigned int port) |
34 | { | 34 | { |
35 | maybebadio((unsigned long)port); | 35 | maybebadio((unsigned long)port); |
36 | return (volatile u16*)port; | 36 | return port; |
37 | } | 37 | } |
38 | 38 | ||
39 | u8 titan_inb(unsigned long port) | 39 | u8 titan_inb(unsigned long port) |