"board not responding" -> "board is not responding"
Reviewed by: gibbs
This commit is contained in:
parent
ce8c72b147
commit
2dfdc2cd79
@ -14,7 +14,7 @@
|
|||||||
*
|
*
|
||||||
* commenced: Sun Sep 27 18:14:01 PDT 1992
|
* 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>
|
#include <sys/types.h>
|
||||||
@ -382,7 +382,7 @@ ahb_send_mbox(struct ahb_data* ahb, int opcode, int target, struct ecb *ecb)
|
|||||||
DELAY(10);
|
DELAY(10);
|
||||||
}
|
}
|
||||||
if (wait == 0) {
|
if (wait == 0) {
|
||||||
printf("ahb%d: board not responding\n", ahb->unit);
|
printf("ahb%d: board is not responding\n", ahb->unit);
|
||||||
Debugger("aha1742");
|
Debugger("aha1742");
|
||||||
fatal_if_no_DDB();
|
fatal_if_no_DDB();
|
||||||
}
|
}
|
||||||
@ -407,7 +407,7 @@ ahb_poll(struct ahb_data *ahb, int wait)
|
|||||||
break;
|
break;
|
||||||
DELAY(1000);
|
DELAY(1000);
|
||||||
} if (wait == 0) {
|
} if (wait == 0) {
|
||||||
printf("ahb%d: board not responding\n", ahb->unit);
|
printf("ahb%d: board is not responding\n", ahb->unit);
|
||||||
return (EIO);
|
return (EIO);
|
||||||
}
|
}
|
||||||
if (cheat != ahb_ecb_phys_kv(ahb, inl(port + MBOXIN0))) {
|
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;
|
break;
|
||||||
DELAY(10);
|
DELAY(10);
|
||||||
} if (wait == 0) {
|
} if (wait == 0) {
|
||||||
printf("ahb%d: board not responding\n", ahb->unit);
|
printf("ahb%d: board is not responding\n", ahb->unit);
|
||||||
Debugger("aha1742");
|
Debugger("aha1742");
|
||||||
fatal_if_no_DDB();
|
fatal_if_no_DDB();
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
* today: Fri Jun 2 17:21:03 EST 1994
|
* today: Fri Jun 2 17:21:03 EST 1994
|
||||||
* added 24F support ++sg
|
* 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>
|
#include <sys/types.h>
|
||||||
@ -384,7 +384,7 @@ uha_send_mbox(struct uha_data *uha, struct mscp *mscp)
|
|||||||
DELAY(100);
|
DELAY(100);
|
||||||
}
|
}
|
||||||
if (spincount == 0) {
|
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);
|
uha->unit);
|
||||||
Debugger("ultra14f");
|
Debugger("ultra14f");
|
||||||
}
|
}
|
||||||
@ -412,7 +412,7 @@ uha_abort(struct uha_data *uha, struct mscp *mscp)
|
|||||||
DELAY(10);
|
DELAY(10);
|
||||||
}
|
}
|
||||||
if (spincount == 0) {
|
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");
|
Debugger("ultra14f");
|
||||||
}
|
}
|
||||||
outl(ur->ogmptr,KVTOPHYS(mscp));
|
outl(ur->ogmptr,KVTOPHYS(mscp));
|
||||||
@ -425,7 +425,7 @@ uha_abort(struct uha_data *uha, struct mscp *mscp)
|
|||||||
DELAY(10);
|
DELAY(10);
|
||||||
}
|
}
|
||||||
if (abortcount == 0) {
|
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");
|
Debugger("ultra14f");
|
||||||
}
|
}
|
||||||
if ((inb(ur->sint) & 0x10) != 0) {
|
if ((inb(ur->sint) & 0x10) != 0) {
|
||||||
@ -457,7 +457,7 @@ uha_poll(struct uha_data *uha, int wait)
|
|||||||
DELAY(1000); /* 1 mSec per loop */
|
DELAY(1000); /* 1 mSec per loop */
|
||||||
}
|
}
|
||||||
if (wait == 0) {
|
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);
|
return (EIO);
|
||||||
}
|
}
|
||||||
uhaintr(uha->unit);
|
uhaintr(uha->unit);
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* 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:
|
* TODO:
|
||||||
@ -2378,7 +2378,7 @@ ahc_poll(ahc, wait)
|
|||||||
if (inb(stport) & INT_PEND)
|
if (inb(stport) & INT_PEND)
|
||||||
break;
|
break;
|
||||||
} if (wait == 0) {
|
} if (wait == 0) {
|
||||||
printf("ahc%d: board not responding\n", ahc->unit);
|
printf("ahc%d: board is not responding\n", ahc->unit);
|
||||||
return (EIO);
|
return (EIO);
|
||||||
}
|
}
|
||||||
ahc_intr((void *)ahc);
|
ahc_intr((void *)ahc);
|
||||||
|
Loading…
Reference in New Issue
Block a user