diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-01-24 03:38:57 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-01-24 03:38:57 +0000 |
commit | 41232a7cb610bd377c4bab09e0bae91824ac1d83 (patch) | |
tree | 29a32d2160706186b445b5ef84bc96ae740ef92b /sys/arch | |
parent | d379c7f7b05ac028221ae21c1f11a9e5382829e2 (diff) |
Don't need ms.h (or SUNKBD/SUNMS)
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc64/dev/com_ebus.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc64/dev/zs.c | 3 | ||||
-rw-r--r-- | sys/arch/sparc64/sparc64/conf.c | 12 |
3 files changed, 4 insertions, 15 deletions
diff --git a/sys/arch/sparc64/dev/com_ebus.c b/sys/arch/sparc64/dev/com_ebus.c index 4f2eabdcfc5..18a03ebb742 100644 --- a/sys/arch/sparc64/dev/com_ebus.c +++ b/sys/arch/sparc64/dev/com_ebus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_ebus.c,v 1.3 2002/01/23 20:16:05 jason Exp $ */ +/* $OpenBSD: com_ebus.c,v 1.4 2002/01/24 03:38:56 jason Exp $ */ /* $NetBSD: com_ebus.c,v 1.6 2001/07/24 19:27:10 eeh Exp $ */ /* @@ -51,8 +51,6 @@ #include <dev/ic/comvar.h> #include <dev/sun/kbd_ms_ttyvar.h> -#include "ms.h" - cdev_decl(com); /* XXX this belongs elsewhere */ int com_ebus_match __P((struct device *, void *, void *)); diff --git a/sys/arch/sparc64/dev/zs.c b/sys/arch/sparc64/dev/zs.c index 2ea6cd8f2f8..9c61d0a6a4c 100644 --- a/sys/arch/sparc64/dev/zs.c +++ b/sys/arch/sparc64/dev/zs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zs.c,v 1.5 2002/01/17 05:17:10 jason Exp $ */ +/* $OpenBSD: zs.c,v 1.6 2002/01/24 03:38:56 jason Exp $ */ /* $NetBSD: zs.c,v 1.29 2001/05/30 15:24:24 lukem Exp $ */ /*- @@ -73,7 +73,6 @@ #include <sparc64/dev/cons.h> -#include "ms.h" /* NMS */ #include "zs.h" /* NZS */ struct cfdriver zs_cd = { diff --git a/sys/arch/sparc64/sparc64/conf.c b/sys/arch/sparc64/sparc64/conf.c index 64c7d687afb..0df0d22b179 100644 --- a/sys/arch/sparc64/sparc64/conf.c +++ b/sys/arch/sparc64/sparc64/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.24 2002/01/17 05:17:10 jason Exp $ */ +/* $OpenBSD: conf.c,v 1.25 2002/01/24 03:38:56 jason Exp $ */ /* $NetBSD: conf.c,v 1.17 2001/03/26 12:33:26 lukem Exp $ */ /* @@ -74,14 +74,6 @@ #include "fb.h" #endif #define NFB 0 -#include "ms.h" -#if 0 -#include "sunkbd.h" -#include "sunms.h" -#else -#define NSUNKBD 0 -#define NSUNMS 0 -#endif #include "zstty.h" #include "sab.h" #include "pcons.h" @@ -174,7 +166,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), /* 10: systech multi-terminal board */ cdev_notdef(), /* 11: DES encryption chip */ cdev_tty_init(NZSTTY,zs), /* 12: Zilog 8530 serial port */ - cdev_mouse_init(NMS+NSUNMS,ms), /* 13: /dev/mouse */ + cdev_notdef(), /* 13: /dev/mouse */ cdev_notdef(), /* 14: cgone */ cdev_notdef(), /* 15: sun /dev/winNNN */ cdev_log_init(1,log), /* 16: /dev/klog */ |