diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-10 01:03:19 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-10 01:03:19 +0200 |
commit | a7df26da158ad64d56cc32934aa38a07d03a6fc9 (patch) | |
tree | be7cf42be9e84df58332c16db91526f818da020b | |
parent | Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6 (diff) | |
parent | [IA64] fix nohalt boot option (diff) | |
download | linux-a7df26da158ad64d56cc32934aa38a07d03a6fc9.tar.xz linux-a7df26da158ad64d56cc32934aa38a07d03a6fc9.zip |
Merge master.kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6
-rw-r--r-- | arch/ia64/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/process.c b/arch/ia64/kernel/process.c index 66e840609808..051e050359e4 100644 --- a/arch/ia64/kernel/process.c +++ b/arch/ia64/kernel/process.c @@ -179,7 +179,7 @@ static int can_do_pal_halt = 1; static int __init nohalt_setup(char * str) { - pal_halt = 0; + pal_halt = can_do_pal_halt = 0; return 1; } __setup("nohalt", nohalt_setup); |