Commit 7475d10b authored by David S. Miller's avatar David S. Miller

SPARC64: Remove some cli/sti usage.

parent 41fc2c33
This diff is collapsed.
......@@ -129,9 +129,6 @@ extern void (*prom_keyboard)(void);
void machine_halt(void)
{
sti();
mdelay(8);
cli();
#ifdef CONFIG_SUN_CONSOLE
if (!serial_console && prom_palette)
prom_palette (1);
......@@ -144,9 +141,6 @@ void machine_halt(void)
void machine_alt_power_off(void)
{
sti();
mdelay(8);
cli();
#ifdef CONFIG_SUN_CONSOLE
if (!serial_console && prom_palette)
prom_palette(1);
......@@ -161,10 +155,6 @@ void machine_restart(char * cmd)
{
char *p;
sti();
mdelay(8);
cli();
p = strchr (reboot_command, '\n');
if (p) *p = 0;
#ifdef CONFIG_SUN_CONSOLE
......
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