From 2dfdc2cd796a17e1f59a5bba49f2aa46c57fe252 Mon Sep 17 00:00:00 2001 From: Dima Ruban Date: Wed, 22 May 1996 00:04:12 +0000 Subject: [PATCH] "board not responding" -> "board is not responding" Reviewed by: gibbs --- sys/i386/eisa/aha1742.c | 8 ++++---- sys/i386/isa/ultra14f.c | 10 +++++----- sys/i386/scsi/aic7xxx.c | 4 ++-- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/sys/i386/eisa/aha1742.c b/sys/i386/eisa/aha1742.c index cb38e700b73e..d439e1131fcb 100644 --- a/sys/i386/eisa/aha1742.c +++ b/sys/i386/eisa/aha1742.c @@ -14,7 +14,7 @@ * * commenced: Sun Sep 27 18:14:01 PDT 1992 * - * $Id: aha1742.c,v 1.51 1996/02/26 01:01:38 gibbs Exp $ + * $Id: aha1742.c,v 1.52 1996/03/10 07:04:26 gibbs Exp $ */ #include @@ -382,7 +382,7 @@ ahb_send_mbox(struct ahb_data* ahb, int opcode, int target, struct ecb *ecb) DELAY(10); } if (wait == 0) { - printf("ahb%d: board not responding\n", ahb->unit); + printf("ahb%d: board is not responding\n", ahb->unit); Debugger("aha1742"); fatal_if_no_DDB(); } @@ -407,7 +407,7 @@ ahb_poll(struct ahb_data *ahb, int wait) break; DELAY(1000); } if (wait == 0) { - printf("ahb%d: board not responding\n", ahb->unit); + printf("ahb%d: board is not responding\n", ahb->unit); return (EIO); } if (cheat != ahb_ecb_phys_kv(ahb, inl(port + MBOXIN0))) { @@ -438,7 +438,7 @@ ahb_send_immed(struct ahb_data *ahb, int target, u_long cmd) break; DELAY(10); } if (wait == 0) { - printf("ahb%d: board not responding\n", ahb->unit); + printf("ahb%d: board is not responding\n", ahb->unit); Debugger("aha1742"); fatal_if_no_DDB(); } diff --git a/sys/i386/isa/ultra14f.c b/sys/i386/isa/ultra14f.c index ae8d7b1bab12..e0b29bd8311e 100644 --- a/sys/i386/isa/ultra14f.c +++ b/sys/i386/isa/ultra14f.c @@ -22,7 +22,7 @@ * today: Fri Jun 2 17:21:03 EST 1994 * added 24F support ++sg * - * $Id: ultra14f.c,v 1.45 1996/01/15 16:15:27 phk Exp $ + * $Id: ultra14f.c,v 1.46 1996/03/10 07:04:48 gibbs Exp $ */ #include @@ -384,7 +384,7 @@ uha_send_mbox(struct uha_data *uha, struct mscp *mscp) DELAY(100); } if (spincount == 0) { - printf("uha%d: uha_send_mbox, board not responding\n", + printf("uha%d: uha_send_mbox, board is not responding\n", uha->unit); Debugger("ultra14f"); } @@ -412,7 +412,7 @@ uha_abort(struct uha_data *uha, struct mscp *mscp) DELAY(10); } if (spincount == 0) { - printf("uha%d: uha_abort, board not responding\n", uha->unit); + printf("uha%d: uha_abort, board is not responding\n", uha->unit); Debugger("ultra14f"); } outl(ur->ogmptr,KVTOPHYS(mscp)); @@ -425,7 +425,7 @@ uha_abort(struct uha_data *uha, struct mscp *mscp) DELAY(10); } if (abortcount == 0) { - printf("uha%d: uha_abort, board not responding\n", uha->unit); + printf("uha%d: uha_abort, board is not responding\n", uha->unit); Debugger("ultra14f"); } if ((inb(ur->sint) & 0x10) != 0) { @@ -457,7 +457,7 @@ uha_poll(struct uha_data *uha, int wait) DELAY(1000); /* 1 mSec per loop */ } if (wait == 0) { - printf("uha%d: uha_poll, board not responding\n", uha->unit); + printf("uha%d: uha_poll, board is not responding\n", uha->unit); return (EIO); } uhaintr(uha->unit); diff --git a/sys/i386/scsi/aic7xxx.c b/sys/i386/scsi/aic7xxx.c index fe3e3f6cb87a..614053bddeca 100644 --- a/sys/i386/scsi/aic7xxx.c +++ b/sys/i386/scsi/aic7xxx.c @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aic7xxx.c,v 1.66 1996/05/10 16:21:02 gibbs Exp $ + * $Id: aic7xxx.c,v 1.67 1996/05/21 18:37:25 gibbs Exp $ */ /* * TODO: @@ -2378,7 +2378,7 @@ ahc_poll(ahc, wait) if (inb(stport) & INT_PEND) break; } if (wait == 0) { - printf("ahc%d: board not responding\n", ahc->unit); + printf("ahc%d: board is not responding\n", ahc->unit); return (EIO); } ahc_intr((void *)ahc);