summaryrefslogtreecommitdiff
path: root/sys/arch/amiga
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-01-11 05:12:41 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-01-11 05:12:41 +0000
commitb3067fd524234e263e58b215d0fb24d414bf1c34 (patch)
tree5c1576265dded5700ab387af81051fabd39f3396 /sys/arch/amiga
parent9ee95b4b405b050512cf782b508d774f4601a6b5 (diff)
panic prints a newline for you, don't do it in the panic string
Diffstat (limited to 'sys/arch/amiga')
-rw-r--r--sys/arch/amiga/amiga/pmap.c6
-rw-r--r--sys/arch/amiga/dev/sbic.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/amiga/amiga/pmap.c b/sys/arch/amiga/amiga/pmap.c
index 930eaf565b4..4f76f86c587 100644
--- a/sys/arch/amiga/amiga/pmap.c
+++ b/sys/arch/amiga/amiga/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.11 1998/03/30 18:56:10 niklas Exp $ */
+/* $OpenBSD: pmap.c,v 1.12 1999/01/11 05:11:05 millert Exp $ */
/* $NetBSD: pmap.c,v 1.39 1997/06/10 18:26:41 veego Exp $ */
/*
@@ -495,7 +495,7 @@ pmap_init(phys_start, phys_end)
addr = amigahwaddr;
(void)vm_map_find(kernel_map, NULL, 0, &addr, ptoa(namigahwpg), FALSE);
if (addr != amigahwaddr)
- panic("pmap_init: bogons in the VM system!\n");
+ panic("pmap_init: bogons in the VM system!");
addr = (vm_offset_t)Sysmap;
vm_object_reference(kernel_object);
@@ -507,7 +507,7 @@ pmap_init(phys_start, phys_end)
* page table map. Need to adjust pmap_size() in amiga_init.c.
*/
if (addr != (vm_offset_t)Sysmap)
- panic("pmap_init: bogons in the VM system!\n");
+ panic("pmap_init: bogons in the VM system!");
#ifdef DEBUG
if (pmapdebug & PDB_INIT) {
printf("pmap_init: Sysseg %p, Sysmap %p, Sysptmap %p\n",
diff --git a/sys/arch/amiga/dev/sbic.c b/sys/arch/amiga/dev/sbic.c
index fd7d3f6f845..9a26fc3fcb5 100644
--- a/sys/arch/amiga/dev/sbic.c
+++ b/sys/arch/amiga/dev/sbic.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sbic.c,v 1.9 1998/03/01 12:52:27 niklas Exp $ */
+/* $OpenBSD: sbic.c,v 1.10 1999/01/11 05:11:07 millert Exp $ */
/* $NetBSD: sbic.c,v 1.28 1996/10/13 03:07:29 christos Exp $ */
/*
@@ -2043,7 +2043,7 @@ sbicmsgin(dev)
!(asr & SBIC_ASR_DBR|SBIC_ASR_INT) )
GET_SBIC_asr(regs, asr);
if( asr & SBIC_ASR_DBR )
- panic("msgin: jammed again!\n");
+ panic("msgin: jammed again!");
GET_SBIC_csr(regs, csr);
CSR_TRACE('e',csr,asr,dev->target);
if( csr & 0x07 != MESG_OUT_PHASE ) {