diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-22 22:56:32 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-22 22:56:32 +0000 |
commit | 887951627f868c6858850f54f98247a47605b011 (patch) | |
tree | b11a96a47d1c93d49d4dd27abddb10747ceae021 /sys/arch/mvme68k | |
parent | e4560efe8b8567e3821c4da1b1622045cbf56d48 (diff) |
More reasonable size for fixed extent storage.
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/mvme68k/autoconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/mvme68k/autoconf.c b/sys/arch/mvme68k/mvme68k/autoconf.c index d51670377c1..75d323be0c8 100644 --- a/sys/arch/mvme68k/mvme68k/autoconf.c +++ b/sys/arch/mvme68k/mvme68k/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.30 2005/11/27 14:17:41 miod Exp $ */ +/* $OpenBSD: autoconf.c,v 1.31 2005/12/22 22:56:31 miod Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -106,7 +106,7 @@ struct device *bootdv; * XXX some storage space must be allocated statically because of * early console init */ -char extiospace[EXTENT_FIXED_STORAGE_SIZE(EIOMAPSIZE / 16)]; +char extiospace[EXTENT_FIXED_STORAGE_SIZE(8)]; struct extent *extio; extern vaddr_t extiobase; |