diff options
author | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-01-30 20:45:36 +0000 |
---|---|---|
committer | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-01-30 20:45:36 +0000 |
commit | f4ca009318dd00a3457741ce99764a6ba3d19a3e (patch) | |
tree | ebb8dedcc23a899dc0a07324baf6ec4ce4ad4be4 /sys/arch/sparc64/dev | |
parent | a9a53aa7b56a80647eeb095733a5239751dbf725 (diff) |
Move SET/CLR/ISSET macros to param.h. fgsch@ and millert@ ok
Diffstat (limited to 'sys/arch/sparc64/dev')
-rw-r--r-- | sys/arch/sparc64/dev/z8530tty.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/arch/sparc64/dev/z8530tty.c b/sys/arch/sparc64/dev/z8530tty.c index a6db66d51b3..09976d724aa 100644 --- a/sys/arch/sparc64/dev/z8530tty.c +++ b/sys/arch/sparc64/dev/z8530tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: z8530tty.c,v 1.2 2002/01/15 22:00:12 jason Exp $ */ +/* $OpenBSD: z8530tty.c,v 1.3 2002/01/30 20:45:34 nordin Exp $ */ /* $NetBSD: z8530tty.c,v 1.77 2001/05/30 15:24:24 lukem Exp $ */ /*- @@ -191,11 +191,6 @@ struct zstty_softc { u_char zst_ppsclear; /* pps trailing edge */ }; -/* 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 zstty_match(struct device *, void *, void *); static void zstty_attach(struct device *, struct device *, void *); |