diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-08-07 03:50:03 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2010-08-07 03:50:03 +0000 |
commit | eb95cc9da073c2c7f556ff2c8c2a63c319881bfb (patch) | |
tree | d3984d88de35cd21a0754c75a71b124b3e0c79f2 /sys/dev/ic/mpi.c | |
parent | 327b342b96e585a8d91a4811578b95328b8aead2 (diff) |
No "\n" needed at the end of panic() strings.
Bogus chunks pointed out by matthew@ and miod@. No cookies for
marco@ and jasper@.
ok deraadt@ miod@ matthew@ jasper@ macro@
Diffstat (limited to 'sys/dev/ic/mpi.c')
-rw-r--r-- | sys/dev/ic/mpi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/mpi.c b/sys/dev/ic/mpi.c index 26d4ccf284c..a666502d8dc 100644 --- a/sys/dev/ic/mpi.c +++ b/sys/dev/ic/mpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpi.c,v 1.155 2010/07/06 07:18:18 dlg Exp $ */ +/* $OpenBSD: mpi.c,v 1.156 2010/08/07 03:50:01 krw Exp $ */ /* * Copyright (c) 2005, 2006, 2009 David Gwynne <dlg@openbsd.org> @@ -871,7 +871,7 @@ mpi_reply(struct mpi_softc *sc, u_int32_t reg) break; default: - panic("%s: unsupported context reply\n", + panic("%s: unsupported context reply", DEVNAME(sc)); } } @@ -2416,7 +2416,7 @@ mpi_fwupload(struct mpi_softc *sc) } if (ccb->ccb_rcb == NULL) - panic("%s: unable to do fw upload\n", DEVNAME(sc)); + panic("%s: unable to do fw upload", DEVNAME(sc)); upp = ccb->ccb_rcb->rcb_reply; if (letoh16(upp->ioc_status) != MPI_IOCSTATUS_SUCCESS) @@ -2540,7 +2540,7 @@ mpi_req_cfg_header(struct mpi_softc *sc, u_int8_t type, u_int8_t number, mpi_wait(sc, ccb); if (ccb->ccb_rcb == NULL) - panic("%s: unable to fetch config header\n", DEVNAME(sc)); + panic("%s: unable to fetch config header", DEVNAME(sc)); cp = ccb->ccb_rcb->rcb_reply; DNPRINTF(MPI_D_MISC, "%s: action: 0x%02x msg_length: %d function: " |