Cosmetics. ( 0x80 -> NCRSTAT_INT )

This commit is contained in:
tsutsui 2000-03-20 03:49:22 +00:00
parent 3eed2414e5
commit 553896782a
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: esp_isa.c,v 1.19 2000/03/19 21:27:01 mycroft Exp $ */
/* $NetBSD: esp_isa.c,v 1.20 2000/03/20 03:49:22 tsutsui Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -537,7 +537,7 @@ esp_isa_dma_intr(sc)
}
if (esc->sc_active) {
while (!(NCR_READ_REG(sc, NCR_STAT) & 0x80));
while (!(NCR_READ_REG(sc, NCR_STAT) & NCRSTAT_INT));
espstat = NCR_READ_REG(sc, NCR_STAT);
espintr = NCR_READ_REG(sc, NCR_INTR);
espphase = (espintr & NCRINTR_DIS)

View File

@ -1,4 +1,4 @@
/* $NetBSD: esp_pcmcia.c,v 1.2 2000/03/20 00:53:17 mycroft Exp $ */
/* $NetBSD: esp_pcmcia.c,v 1.3 2000/03/20 03:49:23 tsutsui Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -443,7 +443,7 @@ esp_pcmcia_dma_intr(sc)
}
if (esc->sc_active) {
while (!(NCR_READ_REG(sc, NCR_STAT) & 0x80));
while (!(NCR_READ_REG(sc, NCR_STAT) & NCRSTAT_INT));
espstat = NCR_READ_REG(sc, NCR_STAT);
espintr = NCR_READ_REG(sc, NCR_INTR);
espphase = (espintr & NCRINTR_DIS)