diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 1999-03-18 23:29:19 +0000 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 1999-03-18 23:29:19 +0000 |
commit | 86e26a208f579c1dced37a6338415c6ab472b790 (patch) | |
tree | e6bb27f44e633d6f1534d49774b1e39facef8262 /arch | |
parent | 00480fa2c692b2d6c171de9616dc8914c54193cd (diff) |
disabled freeing of prom memory, since all problems are sorted out
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/arc/memory.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/mips/arc/memory.c b/arch/mips/arc/memory.c index 19b776c74..78e3e6b3d 100644 --- a/arch/mips/arc/memory.c +++ b/arch/mips/arc/memory.c @@ -4,7 +4,7 @@ * * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) * - * $Id: memory.c,v 1.2 1999/02/25 21:04:13 tsbogend Exp $ + * $Id: memory.c,v 1.3 1999/02/25 21:23:23 tsbogend Exp $ */ #include <linux/init.h> #include <linux/kernel.h> @@ -69,10 +69,12 @@ static int __init prom_memtype_classify (union linux_memtypes type) case arcs_free: case arcs_fcontig: return MEMTYPE_FREE; +#if 0 /* not yet */ case arcs_atmp: case arcs_aperm: case arcs_prog: return MEMTYPE_PROM; +#endif default: return MEMTYPE_DONTUSE; } |