diff options
author | 2005-08-09 16:03:19 -0700 | |
---|---|---|
committer | 2005-08-09 16:03:19 -0700 | |
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-dev-a7df26da158ad64d56cc32934aa38a07d03a6fc9.tar.xz linux-dev-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); |