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) ...@@ -9,8 +9,7 @@ static inline void atomic_scrub(void *va, u32 size)
unsigned long temp; unsigned long temp;
u32 i; 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 * Very carefully read and write to memory atomically
* so we are interrupt, DMA and SMP safe. * so we are interrupt, DMA and SMP safe.
...@@ -19,16 +18,16 @@ static inline void atomic_scrub(void *va, u32 size) ...@@ -19,16 +18,16 @@ static inline void atomic_scrub(void *va, u32 size)
*/ */
__asm__ __volatile__ ( __asm__ __volatile__ (
" .set mips3 \n" " .set mips2 \n"
"1: ll %0, %1 # atomic_add \n" "1: ll %0, %1 # atomic_scrub \n"
" ll %0, %1 # atomic_add \n" " addu %0, $0 \n"
" addu %0, $0 \n" " sc %0, %1 \n"
" sc %0, %1 \n" " beqz %0, 1b \n"
" beqz %0, 1b \n" " .set mips0 \n"
" .set mips0 \n"
: "=&r" (temp), "=m" (*virt_addr) : "=&r" (temp), "=m" (*virt_addr)
: "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