diff options
| author | Justin T. Gibbs <gibbs@FreeBSD.org> | 2003-06-23 22:06:34 +0000 |
|---|---|---|
| committer | Justin T. Gibbs <gibbs@FreeBSD.org> | 2003-06-23 22:06:34 +0000 |
| commit | f5db59f9d606c9ac2d9060c65fd4d5c06db2fb4e (patch) | |
| tree | 40dc6d86c5e48be40bfa05d17357730690845b98 | |
| parent | ce3ae5c7e38ae2d9d6e0890e2a49c2ade4bf9438 (diff) | |
Notes
| -rw-r--r-- | sys/dev/aic7xxx/aic79xx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/aic7xxx/aic79xx.c b/sys/dev/aic7xxx/aic79xx.c index e43a75b8ec27..4e42413cc381 100644 --- a/sys/dev/aic7xxx/aic79xx.c +++ b/sys/dev/aic7xxx/aic79xx.c @@ -37,7 +37,7 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. * - * $Id: //depot/aic7xxx/aic7xxx/aic79xx.c#198 $ + * $Id: //depot/aic7xxx/aic7xxx/aic79xx.c#199 $ * * $FreeBSD$ */ @@ -378,7 +378,7 @@ ahd_flush_qoutfifo(struct ahd_softc *ahd) * Wait for any inprogress DMA to complete and clear DMA state * if this if for an SCB in the qinfifo. */ - while ((ccscbctl = ahd_inb(ahd, CCSCBCTL) & (CCARREN|CCSCBEN)) != 0) { + while (((ccscbctl = ahd_inb(ahd, CCSCBCTL)) & (CCARREN|CCSCBEN)) != 0) { if ((ccscbctl & (CCSCBDIR|CCARREN)) == (CCSCBDIR|CCARREN)) { if ((ccscbctl & ARRDONE) != 0) |
