diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-08-27 21:02:54 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-08-27 21:02:54 +0000 |
commit | 5aba481ed40f21a901633ca400c5c25366e3b549 (patch) | |
tree | be324194c48cedbc0679a9613d8f3db9cfc4e8fb /sys/arch/macppc | |
parent | 2f5b9723d084f796d88ca294962b3953b727fbc4 (diff) |
Remove definitions of nonexistent consdevs.
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/macppc/conf.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/arch/macppc/macppc/conf.c b/sys/arch/macppc/macppc/conf.c index cf9822ce0e2..a7568d973b9 100644 --- a/sys/arch/macppc/macppc/conf.c +++ b/sys/arch/macppc/macppc/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.53 2013/08/20 14:27:29 ajacoutot Exp $ */ +/* $OpenBSD: conf.c,v 1.54 2013/08/27 21:02:53 mpi Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -336,12 +336,9 @@ int chrtoblktbl[] = { int nchrtoblktbl = nitems(chrtoblktbl); #include <dev/cons.h> -#include "vgafb_pci.h" cons_decl(ws); cons_decl(zs); -cons_decl(ofc); -cons_decl(com); struct consdev constab[] = { #if NWSDISPLAY > 0 @@ -350,8 +347,5 @@ struct consdev constab[] = { #if NZSTTY > 0 cons_init(zs), #endif -#if NOFCONS > 0 - cons_init(ofc), -#endif { 0 }, }; |