diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2009-11-01 23:06:04 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2009-11-01 23:06:04 +0000 |
commit | 4deda1b87a5fba9d18b16318ddd5f8f0770bc42a (patch) | |
tree | 1bb6fc2c26e4d2b6f16161d1bd36c0eccae58358 /sys/arch/luna88k/dev | |
parent | 5ab4240e0f94125c81a2e37984de55d5a8f4549e (diff) |
Move IS[12]BYTEMSG and ISEXTMSG defines to a common place.
Pointed out by miod@. krw@ miod@ ok.
Diffstat (limited to 'sys/arch/luna88k/dev')
-rw-r--r-- | sys/arch/luna88k/dev/mb89352.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/luna88k/dev/mb89352.c b/sys/arch/luna88k/dev/mb89352.c index 623f8b00f64..a0c12c1a3a9 100644 --- a/sys/arch/luna88k/dev/mb89352.c +++ b/sys/arch/luna88k/dev/mb89352.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mb89352.c,v 1.9 2009/09/18 19:17:00 miod Exp $ */ +/* $OpenBSD: mb89352.c,v 1.10 2009/11/01 23:06:03 fgsch Exp $ */ /* $NetBSD: mb89352.c,v 1.5 2000/03/23 07:01:31 thorpej Exp $ */ /* NecBSD: mb89352.c,v 1.4 1998/03/14 07:31:20 kmatsuda Exp */ @@ -851,10 +851,6 @@ spc_dequeue(sc, acb) * INTERRUPT/PROTOCOL ENGINE */ -#define IS1BYTEMSG(m) (((m) != 0x01 && (m) < 0x20) || (m) >= 0x80) -#define IS2BYTEMSG(m) (((m) & 0xf0) == 0x20) -#define ISEXTMSG(m) ((m) == 0x01) - /* * Precondition: * The SCSI bus is already in the MSGI phase and there is a message byte |