Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Feb 2021 20:08:59 GMT
From:      Mitchell Horne <mhorne@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 530d38441d55 - main - armv8crypto: add missing newline
Message-ID:  <202102282008.11SK8xAD016800@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=530d38441d55b7ac62ebae6ac8ea76903a4a3b0c

commit 530d38441d55b7ac62ebae6ac8ea76903a4a3b0c
Author:     Elliott Mitchell <ehem+freebsd@m5p.com>
AuthorDate: 2021-02-28 20:03:44 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2021-02-28 20:03:55 +0000

    armv8crypto: add missing newline
    
    The missing newline mildly garbles boot-time messages and this can be
    troublesome if you need those.
    
    Fixes:          a520f5ca580f ("armv8crypto: print a message on probe failure")
    Reported by:    Mike Karels (mike@karels.net)
    Reviewed By:    gonzo
    Differential Revision:  https://reviews.freebsd.org/D28988
---
 sys/crypto/armv8/armv8_crypto.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/crypto/armv8/armv8_crypto.c b/sys/crypto/armv8/armv8_crypto.c
index be39168d50f3..24f6eff5608d 100644
--- a/sys/crypto/armv8/armv8_crypto.c
+++ b/sys/crypto/armv8/armv8_crypto.c
@@ -122,7 +122,7 @@ armv8_crypto_probe(device_t dev)
 	default:
 		break;
 	case ID_AA64ISAR0_AES_NONE:
-		device_printf(dev, "CPU lacks AES instructions");
+		device_printf(dev, "CPU lacks AES instructions\n");
 		break;
 	}
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202102282008.11SK8xAD016800>