summaryrefslogtreecommitdiff
path: root/sys/arch/sparc/dev/cgfourteen.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2002-10-12 01:09:46 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2002-10-12 01:09:46 +0000
commitfd4371e84bfe456363d8522471f8e03b42c3f36e (patch)
treea45b0b37f4702c1340cc44dce62c3b2b2e2ea809 /sys/arch/sparc/dev/cgfourteen.c
parentc7bb58ffd3ad6fc8b402a37bee511cb1b92325de (diff)
Remove more '\n's from panic() statements. Both trailing and leading.
Diff generated by Chris Kuethe.
Diffstat (limited to 'sys/arch/sparc/dev/cgfourteen.c')
-rw-r--r--sys/arch/sparc/dev/cgfourteen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/dev/cgfourteen.c b/sys/arch/sparc/dev/cgfourteen.c
index 9f84523314b..74c59f8d931 100644
--- a/sys/arch/sparc/dev/cgfourteen.c
+++ b/sys/arch/sparc/dev/cgfourteen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cgfourteen.c,v 1.17 2002/10/01 07:09:59 miod Exp $ */
+/* $OpenBSD: cgfourteen.c,v 1.18 2002/10/12 01:09:43 krw Exp $ */
/* $NetBSD: cgfourteen.c,v 1.7 1997/05/24 20:16:08 pk Exp $ */
/*
@@ -246,10 +246,10 @@ cgfourteenattach(parent, self, args)
* Sanity checks
*/
if (ca->ca_ra.ra_len < 0x10000)
- panic("\ncgfourteen: expected %x bytes of control "
+ panic("cgfourteen: expected %x bytes of control "
"registers, got %x", 0x10000, ca->ca_ra.ra_len);
if (ca->ca_ra.ra_nreg < CG14_NREG)
- panic("\ncgfourteen: expected %d registers, got %d",
+ panic("cgfourteen: expected %d registers, got %d",
CG14_NREG, ca->ca_ra.ra_nreg);
printf(", %dMB", ca->ca_ra.ra_reg[CG14_REG_VRAM].rr_len >> 20);