summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/dev
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2002-01-31 16:39:18 +0000
committerJason Wright <jason@cvs.openbsd.org>2002-01-31 16:39:18 +0000
commite7c8e5fbce8a20a504d14c3f2ebe4f5526984527 (patch)
tree86c3002c0e7e898649ade2ae50728c2cc1da4996 /sys/arch/sparc64/dev
parenta5b27308ee2e9038aba9f702042fec3e80c59568 (diff)
Fallout from moving SET/CLR/etc
Diffstat (limited to 'sys/arch/sparc64/dev')
-rw-r--r--sys/arch/sparc64/dev/z8530kbd.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/sparc64/dev/z8530kbd.c b/sys/arch/sparc64/dev/z8530kbd.c
index bb9bfc61640..1471259b44d 100644
--- a/sys/arch/sparc64/dev/z8530kbd.c
+++ b/sys/arch/sparc64/dev/z8530kbd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: z8530kbd.c,v 1.6 2002/01/25 03:24:53 jason Exp $ */
+/* $OpenBSD: z8530kbd.c,v 1.7 2002/01/31 16:39:17 jason Exp $ */
/* $NetBSD: z8530tty.c,v 1.77 2001/05/30 15:24:24 lukem Exp $ */
/*-
@@ -206,11 +206,6 @@ struct zskbd_softc {
int zst_layout; /* current layout */
};
-/* Macros to clear/set/test flags. */
-#define SET(t, f) (t) |= (f)
-#define CLR(t, f) (t) &= ~(f)
-#define ISSET(t, f) ((t) & (f))
-
/* Definition of the driver for autoconfig. */
static int zskbd_match(struct device *, void *, void *);
static void zskbd_attach(struct device *, struct device *, void *);