"board not responding" -> "board is not responding"

Reviewed by:	gibbs
This commit is contained in:
Dima Ruban 1996-05-22 00:04:12 +00:00
parent ce8c72b147
commit 2dfdc2cd79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=15852
3 changed files with 11 additions and 11 deletions

View File

@ -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 <sys/types.h>
@ -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();
}

View File

@ -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 <sys/types.h>
@ -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);

View File

@ -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);