diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 1999-04-14 21:25:02 +0000 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 1999-04-14 21:25:02 +0000 |
commit | a98ba59a71a6c2d8681ed73f9213add5fa575d64 (patch) | |
tree | d7545cb3d7d0b15a4e501b09dd42491210fdeeee | |
parent | e9d2c29f0ad03e31b6264deb9605f25989791630 (diff) |
renabled freeing of PROM memory, but this time the loaded program (our
kernel) won't get freed
-rw-r--r-- | arch/mips/arc/memory.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/mips/arc/memory.c b/arch/mips/arc/memory.c index 78e3e6b3d..6dc762272 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.3 1999/02/25 21:23:23 tsbogend Exp $ + * $Id: memory.c,v 1.4 1999/03/18 23:29:19 tsbogend Exp $ */ #include <linux/init.h> #include <linux/kernel.h> @@ -69,12 +69,9 @@ 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; } |