diff options
author | 1996-09-28 10:08:03 +0000 | |
---|---|---|
committer | 1996-09-28 10:08:03 +0000 | |
commit | d50a870cca5c6d5f9cd0ae9a89fca00f159388f4 (patch) | |
tree | 18ef2d8eeb914049bd42aca1158c3e071d764a6e | |
parent | the LIST carried out by mget in remglob() no longer follows symbolic links (diff) | |
download | wireguard-openbsd-d50a870cca5c6d5f9cd0ae9a89fca00f159388f4.tar.xz wireguard-openbsd-d50a870cca5c6d5f9cd0ae9a89fca00f159388f4.zip |
call global system minphys as well
-rw-r--r-- | sys/arch/arc/dev/asc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/arc/dev/asc.c b/sys/arch/arc/dev/asc.c index 24780814358..35de8d19872 100644 --- a/sys/arch/arc/dev/asc.c +++ b/sys/arch/arc/dev/asc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: asc.c,v 1.2 1996/08/26 11:11:59 pefo Exp $ */ +/* $OpenBSD: asc.c,v 1.3 1996/09/28 10:08:03 pefo Exp $ */ /* $NetBSD: asc.c,v 1.10 1994/12/05 19:11:12 dean Exp $ */ /*- @@ -459,7 +459,7 @@ void asc_minphys __P((struct buf *)); struct scsi_adapter asc_switch = { asc_scsi_cmd, -/*XXX*/ asc_minphys, /* no max transfer size, DMA driver negotiates */ + asc_minphys, NULL, NULL, }; @@ -619,6 +619,7 @@ void asc_minphys(bp) struct buf *bp; { + minphys(bp); } /* |