more trailing \r cleanup; pointed out by wiz

This commit is contained in:
provos 2002-10-01 20:41:22 +00:00
parent 88f885d72e
commit d94186ee91
3 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot.c,v 1.10 2002/09/27 15:36:26 provos Exp $ */
/* $NetBSD: boot.c,v 1.11 2002/10/01 20:41:22 provos Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
@ -101,7 +101,7 @@ machdep_common_ether(ether)
ea = (u_char *) ETHER_ADDR_147;
if ((*(int *) ea & 0x2fffff00) == 0x2fffff00)
panic("ERROR: ethernet address not set!\r");
panic("ERROR: ethernet address not set!");
ether[0] = 0x08;
ether[1] = 0x00;
ether[2] = 0x3e;
@ -112,7 +112,7 @@ machdep_common_ether(ether)
ea = (u_char *) ETHER_ADDR_16X;
if (ea[0] + ea[1] + ea[2] + ea[3] + ea[4] + ea[5] == 0)
panic("ERROR: ethernet address not set!\r");
panic("ERROR: ethernet address not set!");
ether[0] = ea[0];
ether[1] = ea[1];
ether[2] = ea[2];

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_xe.c,v 1.9 2002/09/27 20:34:29 thorpej Exp $ */
/* $NetBSD: if_xe.c,v 1.10 2002/10/01 20:41:22 provos Exp $ */
/*
* Copyright (c) 1998 Darrin B. Jewell
* All rights reserved.
@ -564,7 +564,7 @@ xe_dma_tx_completed(map, arg)
#ifdef DIAGNOSTIC
if (!xsc->sc_tx_loaded) {
panic("%s: tx completed never loaded ",sc->sc_dev.dv_xname);
panic("%s: tx completed never loaded",sc->sc_dev.dv_xname);
}
if (map != xsc->sc_tx_dmamap) {
panic("%s: unexpected tx completed map",sc->sc_dev.dv_xname);
@ -585,7 +585,7 @@ xe_dma_tx_shutdown(arg)
#ifdef DIAGNOSTIC
if (!xsc->sc_tx_loaded) {
panic("%s: tx shutdown never loaded ",sc->sc_dev.dv_xname);
panic("%s: tx shutdown never loaded",sc->sc_dev.dv_xname);
}
#endif

View File

@ -1,4 +1,4 @@
/* $NetBSD: pmap.c,v 1.128 2002/09/27 15:36:51 provos Exp $ */
/* $NetBSD: pmap.c,v 1.129 2002/10/01 20:41:22 provos Exp $ */
#undef NO_VCACHE /* Don't forget the locked TLB in dostart */
#define HWREF
/*
@ -774,7 +774,7 @@ remap_data:
if (prom_map[i].vstart == ktext)
break;
if (i == prom_map_size)
panic("No kernel text segment!\r");
panic("No kernel text segment!");
ktsize = prom_map[i].vsize;
ektext = ktext + ktsize;