Commit 3a2f7357 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Get rid of the IP22-specific code in arclib.

    
This breaks the kernel build if sgiwd93 was configured as a module.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 7425b340
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
* Copyright (C) 1999 Ralf Baechle (ralf@gnu.org) * Copyright (C) 1999 Ralf Baechle (ralf@gnu.org)
* Copyright (C) 1999 Silicon Graphics, Inc. * Copyright (C) 1999 Silicon Graphics, Inc.
*/ */
#include <linux/config.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/kernel.h> #include <linux/kernel.h>
...@@ -20,17 +19,11 @@ ...@@ -20,17 +19,11 @@
#include <asm/bootinfo.h> #include <asm/bootinfo.h>
#include <asm/system.h> #include <asm/system.h>
extern void *sgiwd93_host;
extern void reset_wd33c93(void *instance);
VOID VOID
ArcHalt(VOID) ArcHalt(VOID)
{ {
bc_disable(); bc_disable();
local_irq_disable(); local_irq_disable();
#ifdef CONFIG_SCSI_SGIWD93
reset_wd33c93(sgiwd93_host);
#endif
ARC_CALL0(halt); ARC_CALL0(halt);
never: goto never; never: goto never;
} }
...@@ -40,9 +33,6 @@ ArcPowerDown(VOID) ...@@ -40,9 +33,6 @@ ArcPowerDown(VOID)
{ {
bc_disable(); bc_disable();
local_irq_disable(); local_irq_disable();
#ifdef CONFIG_SCSI_SGIWD93
reset_wd33c93(sgiwd93_host);
#endif
ARC_CALL0(pdown); ARC_CALL0(pdown);
never: goto never; never: goto never;
} }
...@@ -53,9 +43,6 @@ ArcRestart(VOID) ...@@ -53,9 +43,6 @@ ArcRestart(VOID)
{ {
bc_disable(); bc_disable();
local_irq_disable(); local_irq_disable();
#ifdef CONFIG_SCSI_SGIWD93
reset_wd33c93(sgiwd93_host);
#endif
ARC_CALL0(restart); ARC_CALL0(restart);
never: goto never; never: goto never;
} }
...@@ -65,9 +52,6 @@ ArcReboot(VOID) ...@@ -65,9 +52,6 @@ ArcReboot(VOID)
{ {
bc_disable(); bc_disable();
local_irq_disable(); local_irq_disable();
#ifdef CONFIG_SCSI_SGIWD93
reset_wd33c93(sgiwd93_host);
#endif
ARC_CALL0(reboot); ARC_CALL0(reboot);
never: goto never; never: goto never;
} }
...@@ -77,9 +61,6 @@ ArcEnterInteractiveMode(VOID) ...@@ -77,9 +61,6 @@ ArcEnterInteractiveMode(VOID)
{ {
bc_disable(); bc_disable();
local_irq_disable(); local_irq_disable();
#ifdef CONFIG_SCSI_SGIWD93
reset_wd33c93(sgiwd93_host);
#endif
ARC_CALL0(imode); ARC_CALL0(imode);
never: goto never; never: goto never;
} }
......
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