diff options
author | Tony Luck <tony.luck@intel.com> | 2005-05-03 16:21:45 -0700 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-05-03 16:21:45 -0700 |
commit | a71f62edc935fbdc346c5b16bea19f1480d29635 (patch) | |
tree | fce9b26a5a9e059735050415eab79fb06a24eae3 /arch/ia64/kernel/process.c | |
parent | a5a70b75d93b26e14c0c5e759099d602a480b9e2 (diff) |
[IA64] Fix two warnings introduced by perfmon patches.
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/kernel/process.c')
-rw-r--r-- | arch/ia64/kernel/process.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/ia64/kernel/process.c b/arch/ia64/kernel/process.c index 474d75f9de8..ebb71f3d6d1 100644 --- a/arch/ia64/kernel/process.c +++ b/arch/ia64/kernel/process.c @@ -183,7 +183,7 @@ static int __init nohalt_setup(char * str) } __setup("nohalt", nohalt_setup); -int +void update_pal_halt_status(int status) { can_do_pal_halt = pal_halt && status; @@ -195,8 +195,6 @@ update_pal_halt_status(int status) void default_idle (void) { - int can_do_pal; - while (!need_resched()) if (can_do_pal_halt) safe_halt(); |