Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235205
b: refs/heads/master
c: 6f3946b
h: refs/heads/master
i:
  235203: 57fdb2c
v: v3
  • Loading branch information
Steven J. Magnani authored and Michal Simek committed Mar 9, 2011
1 parent f7c9d4f commit 914230c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6f205a4c69037e4d8fdf33088a852b64500df012
refs/heads/master: 6f3946b421395ff853bc0bcdab9c26b50ebbba8f
8 changes: 4 additions & 4 deletions trunk/arch/microblaze/include/asm/uaccess.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,16 +120,16 @@ static inline unsigned long __must_check __clear_user(void __user *to,
{
/* normal memset with two words to __ex_table */
__asm__ __volatile__ ( \
"1: sb r0, %2, r0;" \
"1: sb r0, %1, r0;" \
" addik %0, %0, -1;" \
" bneid %0, 1b;" \
" addik %2, %2, 1;" \
" addik %1, %1, 1;" \
"2: " \
__EX_TABLE_SECTION \
".word 1b,2b;" \
".previous;" \
: "=r"(n) \
: "0"(n), "r"(to)
: "=r"(n), "=r"(to) \
: "0"(n), "1"(to)
);
return n;
}
Expand Down

0 comments on commit 914230c

Please sign in to comment.