summaryrefslogtreecommitdiffstats
path: root/arch/mips/sgi/prom/salone.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/sgi/prom/salone.c')
-rw-r--r--arch/mips/sgi/prom/salone.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/arch/mips/sgi/prom/salone.c b/arch/mips/sgi/prom/salone.c
deleted file mode 100644
index f363aedeb..000000000
--- a/arch/mips/sgi/prom/salone.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * salone.c: Routines to load into memory and execute stand-along
- * program images using ARCS PROM firmware.
- *
- * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
- *
- * $Id: salone.c,v 1.2 1998/03/27 08:53:48 ralf Exp $
- */
-#include <linux/init.h>
-#include <asm/sgialib.h>
-
-__initfunc(long prom_load(char *name, unsigned long end, unsigned long *pc, unsigned long *eaddr))
-{
- return romvec->load(name, end, pc, eaddr);
-}
-
-__initfunc(long prom_invoke(unsigned long pc, unsigned long sp, long argc, char **argv, char **envp))
-{
- return romvec->invoke(pc, sp, argc, argv, envp);
-}
-
-__initfunc(long prom_exec(char *name, long argc, char **argv, char **envp))
-{
- return romvec->exec(name, argc, argv, envp);
-}