diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-10-27 03:07:40 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-10-27 03:07:40 +0000 |
commit | 89c92726cd3bfa27c9a2951cb1ac1a3029fe0641 (patch) | |
tree | fb1f501fe36432d76b6a3a236e91e7e40f9570c6 /sys | |
parent | 61012626cf6d3de009cf8e8d9434b0acfc18b3fc (diff) |
disable tagging on hppa and thus effectively restrict to one command at a time processing; krw@ ok
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/siop_common.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ic/siop_common.c b/sys/dev/ic/siop_common.c index 9df09f172b1..d20d81e4f61 100644 --- a/sys/dev/ic/siop_common.c +++ b/sys/dev/ic/siop_common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: siop_common.c,v 1.17 2003/09/29 18:52:53 mickey Exp $ */ +/* $OpenBSD: siop_common.c,v 1.18 2003/10/27 03:07:39 mickey Exp $ */ /* $NetBSD: siop_common.c,v 1.31 2002/09/27 15:37:18 provos Exp $ */ /* @@ -268,8 +268,10 @@ siop_setuptables(siop_cmd) *targ_flags &= TARF_DT; /* Save TARF_DT 'cuz we don't set it here */ quirks = xs->sc_link->quirks; +#ifndef __hppa__ if ((quirks & SDEV_NOTAGS) == 0) *targ_flags |= TARF_TAG; +#endif if (((quirks & SDEV_NOWIDE) == 0) && (sc->features & SF_BUS_WIDE)) *targ_flags |= TARF_WIDE; |