aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/include/asm/thread_info.h
diff options
context:
space:
mode:
authorRobin Getz <rgetz@blackfin.uclinux.org>2009-01-07 23:14:39 +0800
committerBryan Wu <cooloney@kernel.org>2009-01-07 23:14:39 +0800
commit26fe19f76027b05c39faa9b728912631e91ec182 (patch)
treeb66ea7b4f8d56dac40aa8af919d64f71c8c0a18c /arch/blackfin/include/asm/thread_info.h
parentBlackfin arch: stub out pgprot_noncached() like other people seem to do on nommu (diff)
downloadlinux-dev-26fe19f76027b05c39faa9b728912631e91ec182.tar.xz
linux-dev-26fe19f76027b05c39faa9b728912631e91ec182.zip
Blackfin arch: Update some inline assembly, tweak some register constraints
Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org> Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/include/asm/thread_info.h')
-rw-r--r--arch/blackfin/include/asm/thread_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/include/asm/thread_info.h b/arch/blackfin/include/asm/thread_info.h
index 1d380def2410..7eaf2e2606d9 100644
--- a/arch/blackfin/include/asm/thread_info.h
+++ b/arch/blackfin/include/asm/thread_info.h
@@ -91,7 +91,7 @@ __attribute_const__
static inline struct thread_info *current_thread_info(void)
{
struct thread_info *ti;
- __asm__("%0 = sp;": "=&d"(ti):
+ __asm__("%0 = sp;" : "=da"(ti) :
);
return (struct thread_info *)((long)ti & ~((long)THREAD_SIZE-1));
}