diff options
author | Mathias Krause <minipli@googlemail.com> | 2011-06-10 15:09:05 +0200 |
---|---|---|
committer | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2011-06-14 13:38:24 +0200 |
commit | ff71db2f0784cfff38fa7b55908867a24ccc3216 (patch) | |
tree | 25c9e3bc7f95b83140665736c62319ebe25fdd93 /arch/avr32 | |
parent | c162755491f7ca9853cb9f2aaa3ff3677c1bda78 (diff) | |
download | linux-3.10-ff71db2f0784cfff38fa7b55908867a24ccc3216.tar.gz linux-3.10-ff71db2f0784cfff38fa7b55908867a24ccc3216.tar.bz2 linux-3.10-ff71db2f0784cfff38fa7b55908867a24ccc3216.zip |
avr32, exec: remove redundant set_fs(USER_DS)
The address limit is already set in flush_old_exec() so this
set_fs(USER_DS) is redundant.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/include/asm/processor.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/avr32/include/asm/processor.h b/arch/avr32/include/asm/processor.h index 49a88f5a9d2..108502bc677 100644 --- a/arch/avr32/include/asm/processor.h +++ b/arch/avr32/include/asm/processor.h @@ -131,7 +131,6 @@ struct thread_struct { */ #define start_thread(regs, new_pc, new_sp) \ do { \ - set_fs(USER_DS); \ memset(regs, 0, sizeof(*regs)); \ regs->sr = MODE_USER; \ regs->pc = new_pc & ~1; \ |