diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-09 15:44:18 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-06-09 15:44:18 +0000 |
commit | e7be2376f5a5ad6739b6c9fde5053aad5d01e444 (patch) | |
tree | 788d5b35d8bf8e99ed86c4aa565edeaf42d20504 /sys/arch/hp300 | |
parent | e296f61b1a4136c8060a582f4eae13f6f1f44d86 (diff) |
Move declaration of cn_tab from dev/cons.c to dev/cninit.c, or appropriate
md files for ports which do not use dev/cninit.c. This gets rid of a common
at kernel link time.
feedback drahn@ ok deraadt@
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/hp300/autoconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/hp300/hp300/autoconf.c b/sys/arch/hp300/hp300/autoconf.c index c34f4c02e19..e054fb7ab8f 100644 --- a/sys/arch/hp300/hp300/autoconf.c +++ b/sys/arch/hp300/hp300/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.48 2010/04/15 20:38:11 miod Exp $ */ +/* $OpenBSD: autoconf.c,v 1.49 2010/06/09 15:44:17 miod Exp $ */ /* $NetBSD: autoconf.c,v 1.45 1999/04/10 17:31:02 kleink Exp $ */ /* @@ -753,6 +753,7 @@ console_scan(func, arg) } int consolepass = -1; +struct consdev *cn_tab; /* * Special version of cninit(). Actually, crippled somewhat. |