Commit d454e909 authored by Jack Steiner's avatar Jack Steiner Committed by Tony Luck

[IA64-SGI] Delete simulator support from SN idle loop

Delete hack for supporting simulator for SN platforms. This capability
has been moved into the simulator environment & is no longer required
in the kernel.
Signed-off-by: default avatarJack Steiner <steiner@sgi.com>
Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
parent de338ce1
...@@ -3,14 +3,13 @@ ...@@ -3,14 +3,13 @@
* License. See the file "COPYING" in the main directory of this archive * License. See the file "COPYING" in the main directory of this archive
* for more details. * for more details.
* *
* Copyright (c) 2001-2003 Silicon Graphics, Inc. All rights reserved. * Copyright (c) 2001-2004 Silicon Graphics, Inc. All rights reserved.
*/ */
#include <linux/config.h>
#include <asm/sn/leds.h> #include <asm/sn/leds.h>
#include <asm/sn/simulator.h>
void snidle(int state) { void snidle(int state)
{
if (state) { if (state) {
if (pda->idle_flag == 0) { if (pda->idle_flag == 0) {
/* /*
...@@ -19,11 +18,6 @@ void snidle(int state) { ...@@ -19,11 +18,6 @@ void snidle(int state) {
set_led_bits(0, LED_CPU_ACTIVITY); set_led_bits(0, LED_CPU_ACTIVITY);
} }
#ifdef CONFIG_IA64_SGI_SN_SIM
if (IS_RUNNING_ON_SIMULATOR())
SIMULATOR_SLEEP();
#endif
pda->idle_flag = 1; pda->idle_flag = 1;
} else { } else {
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment