diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2017-01-21 08:45:46 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2017-01-21 08:45:46 +0000 |
commit | 6ab6ab0cfc22a2956d5cf8524944b7bedb8e5528 (patch) | |
tree | 971170b8acb8cab8676d7e6397335102ce5822b0 /sys | |
parent | b4df22940669e66b0e5edeb51afad4e3f76d0d52 (diff) |
arm64 does not make use of constab but instead uses the same
mechanism as armv7. Remove it so no one starts to believe
we would do it that way.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/arm64/arm64/conf.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/sys/arch/arm64/arm64/conf.c b/sys/arch/arm64/arm64/conf.c index a704a360a9d..d481499b2fa 100644 --- a/sys/arch/arm64/arm64/conf.c +++ b/sys/arch/arm64/arm64/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.2 2017/01/10 13:00:57 patrick Exp $ */ +/* $OpenBSD: conf.c,v 1.3 2017/01/21 08:45:45 patrick Exp $ */ /* * Copyright (c) 1994, 1995 Charles M. Hannum. All rights reserved. @@ -370,18 +370,3 @@ dev_rawpart(struct device *dv) return (NODEV); } - -#include <dev/cons.h> - -cons_decl(com); -cons_decl(ws); - -struct consdev constab[] = { -#if NWSDISPLAY > 0 - cons_init(ws), -#endif -#if NCOM > 0 - cons_init(com), -#endif - { 0 }, -}; |