diff options
Diffstat (limited to 'sys/arch/vax/qbus/qd.c')
-rw-r--r-- | sys/arch/vax/qbus/qd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/vax/qbus/qd.c b/sys/arch/vax/qbus/qd.c index 5b46316e2e6..d97ce5b9bc8 100644 --- a/sys/arch/vax/qbus/qd.c +++ b/sys/arch/vax/qbus/qd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qd.c,v 1.19 2010/07/10 03:06:51 matthew Exp $ */ +/* $OpenBSD: qd.c,v 1.20 2010/09/22 01:18:57 matthew Exp $ */ /* $NetBSD: qd.c,v 1.17 2000/01/24 02:40:29 matt Exp $ */ /*- @@ -1601,7 +1601,7 @@ qdwrite(dev, uio, flag) /* * this is a DMA xfer from user space */ - return (physio(qd_strategy, NULL, dev, B_WRITE, minphys, uio)); + return (physio(qd_strategy, dev, B_WRITE, minphys, uio)); } return (ENXIO); } @@ -1629,7 +1629,7 @@ qdread(dev, uio, flag) /* * this is a bitmap-to-processor xfer */ - return (physio(qd_strategy, NULL, dev, B_READ, minphys, uio)); + return (physio(qd_strategy, dev, B_READ, minphys, uio)); } return (ENXIO); } |