aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-mips/io.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2005-04-18 10:54:43 -0400
committerRalf Baechle <ralf@linux-mips.org>2005-10-29 14:31:09 -0400
commitecba36dad8b635174bcbc32998a019b6d1e6f12f (patch)
tree004f998b5e8531fc3c0bacef840bf0b8954b1f3c /include/asm-mips/io.h
parent88de09f351e0b38a0991f4abd4ff6691b565d2ef (diff)
Fix a few build warnings.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/io.h')
-rw-r--r--include/asm-mips/io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-mips/io.h b/include/asm-mips/io.h
index cee0562a7851..3b4d97d80643 100644
--- a/include/asm-mips/io.h
+++ b/include/asm-mips/io.h
@@ -451,10 +451,10 @@ static inline void reads##bwlq(volatile void __iomem *mem, void *addr, \
451 451
452#define __BUILD_IOPORT_STRING(bwlq, type) \ 452#define __BUILD_IOPORT_STRING(bwlq, type) \
453 \ 453 \
454static inline void outs##bwlq(unsigned long port, void *addr, \ 454static inline void outs##bwlq(unsigned long port, const void *addr, \
455 unsigned int count) \ 455 unsigned int count) \
456{ \ 456{ \
457 volatile type *__addr = addr; \ 457 const volatile type *__addr = addr; \
458 \ 458 \
459 while (count--) { \ 459 while (count--) { \
460 mem_out##bwlq(*__addr, port); \ 460 mem_out##bwlq(*__addr, port); \