From f00d8fca53d7290b04cf280f129da36744806525 Mon Sep 17 00:00:00 2001 From: tsutsui Date: Sun, 23 Jun 2019 06:33:17 +0000 Subject: Add a missing newline in an error message. Noticed in PR/54205 --- sys/dev/ic/mvsata.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') 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 -__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; -- cgit