summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/stand
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/mvme88k/stand')
-rw-r--r--sys/arch/mvme88k/stand/netboot/dev_net.c4
-rw-r--r--sys/arch/mvme88k/stand/netboot/if_ie.c4
-rw-r--r--sys/arch/mvme88k/stand/netboot/if_le.c8
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/mvme88k/stand/netboot/dev_net.c b/sys/arch/mvme88k/stand/netboot/dev_net.c
index 16a494e7692..35bb7fdd7c7 100644
--- a/sys/arch/mvme88k/stand/netboot/dev_net.c
+++ b/sys/arch/mvme88k/stand/netboot/dev_net.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dev_net.c,v 1.2 1998/08/22 08:37:56 smurph Exp $ */
+/* $OpenBSD: dev_net.c,v 1.3 1999/01/11 05:11:46 millert Exp $ */
/*
* Copyright (c) 1995 Gordon W. Ross
@@ -190,7 +190,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\n");
+ panic("ERROR: ethernet address not set!");
ether[0] = ea[0];
ether[1] = ea[1];
ether[2] = ea[2];
diff --git a/sys/arch/mvme88k/stand/netboot/if_ie.c b/sys/arch/mvme88k/stand/netboot/if_ie.c
index d9003693331..430629ba607 100644
--- a/sys/arch/mvme88k/stand/netboot/if_ie.c
+++ b/sys/arch/mvme88k/stand/netboot/if_ie.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ie.c,v 1.3 1998/12/15 06:32:35 smurph Exp $ */
+/* $OpenBSD: if_ie.c,v 1.4 1999/01/11 05:11:46 millert Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -146,7 +146,7 @@ ie_error(nif, str, ier)
char *str;
volatile struct iereg *ier;
{
- panic("ie%d: unknown error\n", nif->nif_unit);
+ panic("ie%d: unknown error", nif->nif_unit);
}
ieack(ier, iem)
diff --git a/sys/arch/mvme88k/stand/netboot/if_le.c b/sys/arch/mvme88k/stand/netboot/if_le.c
index 3f3e4e556d8..4775ea59e55 100644
--- a/sys/arch/mvme88k/stand/netboot/if_le.c
+++ b/sys/arch/mvme88k/stand/netboot/if_le.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_le.c,v 1.2 1998/08/22 08:38:02 smurph Exp $ */
+/* $OpenBSD: if_le.c,v 1.3 1999/01/11 05:11:46 millert Exp $ */
/*
* Copyright (c) 1995 Theo de Raadt
@@ -170,7 +170,7 @@ le_error(nif, str, ler1)
{
/* ler1->ler1_rap = LE_CSRO done in caller */
if (ler1->ler1_rdp & LE_C0_BABL)
- panic("le%d: been babbling, found by '%s'\n", nif->nif_unit, str);
+ panic("le%d: been babbling, found by '%s'", nif->nif_unit, str);
if (ler1->ler1_rdp & LE_C0_CERR) {
le_stats.collision_error++;
ler1->ler1_rdp = LE_C0_CERR;
@@ -295,12 +295,12 @@ le_poll(desc, pkt, len)
goto cleanup;
}
if ((rmd->rmd1_bits & (LE_R1_STP | LE_R1_ENP)) != (LE_R1_STP | LE_R1_ENP))
- panic("le_poll: chained packet\n");
+ panic("le_poll: chained packet");
length = rmd->rmd3;
if (length >= LEMTU) {
length = 0;
- panic("csr0 when bad things happen: %x\n", ler1->ler1_rdp);
+ panic("csr0 when bad things happen: %x", ler1->ler1_rdp);
goto cleanup;
}
if (!length)