diff options
author | Tony Luck <tony.luck@intel.com> | 2005-05-03 19:21:45 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-05-03 19:21:45 -0400 |
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 474d75f9de8a..ebb71f3d6d19 100644 --- a/arch/ia64/kernel/process.c +++ b/arch/ia64/kernel/process.c | |||
@@ -183,7 +183,7 @@ static int __init nohalt_setup(char * str) | |||
183 | } | 183 | } |
184 | __setup("nohalt", nohalt_setup); | 184 | __setup("nohalt", nohalt_setup); |
185 | 185 | ||
186 | int | 186 | void |
187 | update_pal_halt_status(int status) | 187 | update_pal_halt_status(int status) |
188 | { | 188 | { |
189 | can_do_pal_halt = pal_halt && status; | 189 | can_do_pal_halt = pal_halt && status; |
@@ -195,8 +195,6 @@ update_pal_halt_status(int status) | |||
195 | void | 195 | void |
196 | default_idle (void) | 196 | default_idle (void) |
197 | { | 197 | { |
198 | int can_do_pal; | ||
199 | |||
200 | while (!need_resched()) | 198 | while (!need_resched()) |
201 | if (can_do_pal_halt) | 199 | if (can_do_pal_halt) |
202 | safe_halt(); | 200 | safe_halt(); |