Commit 99289a4e authored by Arnaud Giersch's avatar Arnaud Giersch Committed by Ralf Baechle

[MIPS] Add const qualifier to writes##bwlq.

    
Add const qualifier to parameter addr of writes##bwlq.
Signed-off-by: default avatarArnaud Giersch <arnaud.giersch@free.fr>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 59f145d2
...@@ -459,10 +459,10 @@ __BUILDIO(q, u64) ...@@ -459,10 +459,10 @@ __BUILDIO(q, u64)
#define __BUILD_MEMORY_STRING(bwlq, type) \ #define __BUILD_MEMORY_STRING(bwlq, type) \
\ \
static inline void writes##bwlq(volatile void __iomem *mem, void *addr, \ static inline void writes##bwlq(volatile void __iomem *mem, \
unsigned int count) \ const void *addr, unsigned int count) \
{ \ { \
volatile type *__addr = addr; \ const volatile type *__addr = addr; \
\ \
while (count--) { \ while (count--) { \
mem_write##bwlq(*__addr, mem); \ mem_write##bwlq(*__addr, mem); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment