Commit 1bfa771e authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Polish <asm/edac.h>.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 88eb4134
......@@ -9,8 +9,7 @@ static inline void atomic_scrub(void *va, u32 size)
unsigned long temp;
u32 i;
for (i = 0; i < size / sizeof(unsigned long); i++, virt_addr++) {
for (i = 0; i < size / sizeof(unsigned long); i++) {
/*
* Very carefully read and write to memory atomically
* so we are interrupt, DMA and SMP safe.
......@@ -19,9 +18,8 @@ static inline void atomic_scrub(void *va, u32 size)
*/
__asm__ __volatile__ (
" .set mips3 \n"
"1: ll %0, %1 # atomic_add \n"
" ll %0, %1 # atomic_add \n"
" .set mips2 \n"
"1: ll %0, %1 # atomic_scrub \n"
" addu %0, $0 \n"
" sc %0, %1 \n"
" beqz %0, 1b \n"
......@@ -29,6 +27,7 @@ static inline void atomic_scrub(void *va, u32 size)
: "=&r" (temp), "=m" (*virt_addr)
: "m" (*virt_addr));
virt_addr++;
}
}
......
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