From 9d5ffb80d3f11d359e2d9bfc112fdcf0ad226f04 Mon Sep 17 00:00:00 2001 From: chs Date: Fri, 11 Feb 2005 02:09:39 +0000 Subject: [PATCH] remove redundant initialization of minaddr for uvm_km_suballoc(). --- sys/arch/acorn26/acorn26/machdep.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/arch/acorn26/acorn26/machdep.c b/sys/arch/acorn26/acorn26/machdep.c index 35ea6dee16a6..abe03721c186 100644 --- a/sys/arch/acorn26/acorn26/machdep.c +++ b/sys/arch/acorn26/acorn26/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.13 2004/02/13 11:36:09 wiz Exp $ */ +/* $NetBSD: machdep.c,v 1.14 2005/02/11 02:09:39 chs Exp $ */ /*- * Copyright (c) 1998 Ben Harris @@ -32,7 +32,7 @@ #include -__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.13 2004/02/13 11:36:09 wiz Exp $"); +__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.14 2005/02/11 02:09:39 chs Exp $"); #include #include @@ -163,7 +163,6 @@ cpu_startup() * Allocate a submap for exec arguments. This map effectively * limits the number of processes exec'ing at any time. */ - minaddr = kernel_map->min_offset; exec_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr, NCARGS, VM_MAP_PAGEABLE, FALSE, NULL);