summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2001-08-24 19:26:16 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2001-08-24 19:26:16 +0000
commit6aee53c9e93beb803627917d827e1ea511dfc83b (patch)
tree7961c9be76bb3ccb50c417874e710d939f39479f
parent609f11bc8825d9bc172d1dbf987312e3e316baba (diff)
No newline at the end of panic messages.
-rw-r--r--sys/arch/mvme88k/dev/dart.c4
-rw-r--r--sys/arch/mvme88k/dev/if_ie.c6
-rw-r--r--sys/arch/mvme88k/mvme88k/m18x_cmmu.c6
-rw-r--r--sys/arch/mvme88k/mvme88k/m197_cmmu.c6
-rw-r--r--sys/arch/mvme88k/mvme88k/machdep.c4
5 files changed, 13 insertions, 13 deletions
diff --git a/sys/arch/mvme88k/dev/dart.c b/sys/arch/mvme88k/dev/dart.c
index bba0310a446..47ca82eb4b9 100644
--- a/sys/arch/mvme88k/dev/dart.c
+++ b/sys/arch/mvme88k/dev/dart.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dart.c,v 1.7 2001/07/04 08:09:21 niklas Exp $ */
+/* $OpenBSD: dart.c,v 1.8 2001/08/24 19:26:12 miod Exp $ */
/*
* Mach Operating System
@@ -481,7 +481,7 @@ dartmctl (dev, flags, how)
addr->write.wr_oprreset = newflags;
break;
case DMGET:
- panic("dartmctl: DMGET not supported (yet)\n");
+ panic("dartmctl: DMGET not supported (yet)");
break;
}
diff --git a/sys/arch/mvme88k/dev/if_ie.c b/sys/arch/mvme88k/dev/if_ie.c
index 05b495581ef..7468d49a94b 100644
--- a/sys/arch/mvme88k/dev/if_ie.c
+++ b/sys/arch/mvme88k/dev/if_ie.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ie.c,v 1.12 2001/08/08 21:01:10 miod Exp $ */
+/* $OpenBSD: if_ie.c,v 1.13 2001/08/24 19:26:12 miod Exp $ */
/*-
* Copyright (c) 1998 Steve Murphree, Jr.
@@ -1328,7 +1328,7 @@ iereset(sc)
#ifdef notdef
if (!check_ie_present(sc, sc->sc_maddr, sc->sc_msize))
- panic("ie disappeared!\n");
+ panic("ie disappeared!");
#endif
sc->sc_arpcom.ac_if.if_flags |= IFF_UP;
@@ -1522,7 +1522,7 @@ setup_bufs(sc)
sc->nframes = n / r;
if (sc->nframes <= 0)
- panic("ie: bogus buffer calc\n");
+ panic("ie: bogus buffer calc");
if (sc->nframes > MXFRAMES)
sc->nframes = MXFRAMES;
diff --git a/sys/arch/mvme88k/mvme88k/m18x_cmmu.c b/sys/arch/mvme88k/mvme88k/m18x_cmmu.c
index f43a33fe99a..d86363733b3 100644
--- a/sys/arch/mvme88k/mvme88k/m18x_cmmu.c
+++ b/sys/arch/mvme88k/mvme88k/m18x_cmmu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: m18x_cmmu.c,v 1.10 2001/08/11 01:55:55 miod Exp $ */
+/* $OpenBSD: m18x_cmmu.c,v 1.11 2001/08/24 19:26:15 miod Exp $ */
/*
* Copyright (c) 1998 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -376,7 +376,7 @@ m18x_setup_board_config()
case 0:
printf("MVME%x board configuration #%X: %d CPUs %d CMMUs\n", cputyp,
vme188_config, max_cpus, max_cmmus);
- panic("This configuration is not supported - go and get another OS.\n");
+ panic("This configuration is not supported - go and get another OS.");
/* NOTREACHED */
break;
case 1:
@@ -385,7 +385,7 @@ m18x_setup_board_config()
m18x_setup_cmmu_config();
break;
default:
- panic("UNKNOWN MVME%x board configuration: WHOAMI = 0x%02x\n", cputyp, *whoami);
+ panic("UNKNOWN MVME%x board configuration: WHOAMI = 0x%02x", cputyp, *whoami);
/* NOTREACHED */
break;
}
diff --git a/sys/arch/mvme88k/mvme88k/m197_cmmu.c b/sys/arch/mvme88k/mvme88k/m197_cmmu.c
index fbe87c4605e..975fee7b365 100644
--- a/sys/arch/mvme88k/mvme88k/m197_cmmu.c
+++ b/sys/arch/mvme88k/mvme88k/m197_cmmu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: m197_cmmu.c,v 1.5 2001/08/11 01:55:55 miod Exp $ */
+/* $OpenBSD: m197_cmmu.c,v 1.6 2001/08/24 19:26:15 miod Exp $ */
/*
* Copyright (c) 1998 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -325,7 +325,7 @@ static
void
m197_cmmu_remote_set(unsigned cpu, unsigned r, unsigned data, unsigned x)
{
- panic("m197_cmmu_remote_set() called!\n");
+ panic("m197_cmmu_remote_set() called!");
}
/*
@@ -338,7 +338,7 @@ static
unsigned
m197_cmmu_remote_get(unsigned cpu, unsigned r, unsigned data)
{
- panic("m197_cmmu_remote_get() called!\n");
+ panic("m197_cmmu_remote_get() called!");
return 0;
}
diff --git a/sys/arch/mvme88k/mvme88k/machdep.c b/sys/arch/mvme88k/mvme88k/machdep.c
index 8cbf8d2f8f1..da0a2084ef3 100644
--- a/sys/arch/mvme88k/mvme88k/machdep.c
+++ b/sys/arch/mvme88k/mvme88k/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.53 2001/08/23 14:01:03 art Exp $ */
+/* $OpenBSD: machdep.c,v 1.54 2001/08/24 19:26:15 miod Exp $ */
/*
* Copyright (c) 1998, 1999, 2000, 2001 Steve Murphree, Jr.
* Copyright (c) 1996 Nivas Madhur
@@ -1657,7 +1657,7 @@ m188_ext_int(u_int v, struct m88100_saved_state *eframe)
panic("m188_ext_int");
}
if (vec > 0xFF) {
- panic("m188_ext_int: interrupt vector 0x%x greater than 255!\nlevel = %d iack = 0x%x\n",
+ panic("m188_ext_int: interrupt vector 0x%x greater than 255!\nlevel = %d iack = 0x%x",
vec, level, ivec[level]);
}