diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2019-06-23 06:33:17 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2019-06-23 06:33:17 +0000 |
| commit | f00d8fca53d7290b04cf280f129da36744806525 (patch) | |
| tree | 3ce10563592803e9e145b136ca857d894e80fd50 /sys/dev/ic | |
| parent | 27ed18abdec9987f4a22e4b8eb40f2a1af548e72 (diff) | |
Add a missing newline in an error message. Noticed in PR/54205
Diffstat (limited to 'sys/dev/ic')
| -rw-r--r-- | sys/dev/ic/mvsata.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/mvsata.c b/sys/dev/ic/mvsata.c index 23968c434fb..1b5006b46b2 100644 --- a/sys/dev/ic/mvsata.c +++ b/sys/dev/ic/mvsata.c @@ -1,4 +1,4 @@ -/* $NetBSD: mvsata.c,v 1.47 2019/06/23 06:29:22 tsutsui Exp $ */ +/* $NetBSD: mvsata.c,v 1.48 2019/06/23 06:33:17 tsutsui Exp $ */ /* * Copyright (c) 2008 KIYOHARA Takashi * All rights reserved. @@ -26,7 +26,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: mvsata.c,v 1.47 2019/06/23 06:29:22 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: mvsata.c,v 1.48 2019/06/23 06:33:17 tsutsui Exp $"); #include "opt_mvsata.h" @@ -3283,7 +3283,7 @@ mvsata_dma_bufload(struct mvsata_port *mvport, int index, void *databuf, rv = bus_dmamap_load(mvport->port_dmat, data_dmamap, databuf, datalen, NULL, BUS_DMA_NOWAIT | lop); if (rv) { - aprint_error("%s:%d:%d: buffer load failed: error=%d", + aprint_error("%s:%d:%d: buffer load failed: error=%d\n", device_xname(MVSATA_DEV2(mvport)), mvport->port_hc->hc, mvport->port, rv); return rv; |
