diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-03-26 23:09:04 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-03-26 23:09:04 +0000 |
commit | c4e32cf008233c16bfd11813064db4732bd14a92 (patch) | |
tree | c2ff014eca8dc79e159bedd6d3cf464ab2e8b334 /arch/mips/arc/env.c | |
parent | 440759fd2597d026285955112ed34ba90d7b1435 (diff) |
Change some prototypes of the 32-bit ARC library to be same as in
the 64-bit library. Needed by the sgiseeq driver.
Diffstat (limited to 'arch/mips/arc/env.c')
-rw-r--r-- | arch/mips/arc/env.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/mips/arc/env.c b/arch/mips/arc/env.c index 8132442d5..193e9dd08 100644 --- a/arch/mips/arc/env.c +++ b/arch/mips/arc/env.c @@ -3,7 +3,7 @@ * * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) * - * $Id: env.c,v 1.1 1998/10/18 13:32:08 tsbogend Exp $ + * $Id: env.c,v 1.2 1999/10/09 00:00:57 ralf Exp $ */ #include <linux/init.h> #include <linux/kernel.h> @@ -11,12 +11,14 @@ #include <asm/sgialib.h> -char * __init prom_getenv(char *name) +PCHAR __init +ArcGetEnvironmentVariable(CHAR *name) { return romvec->get_evar(name); } -long __init prom_setenv(char *name, char *value) +LONG __init +ArcSetEnvironmentVariable(PCHAR name, PCHAR value) { return romvec->set_evar(name, value); } |