Module Name: src Committed By: riastradh Date: Sat Jul 25 22:42:03 UTC 2020
Modified Files: src/sys/crypto/aes: aes_impl.c Log Message: Make aes boot message verbose-only. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/crypto/aes/aes_impl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/crypto/aes/aes_impl.c diff -u src/sys/crypto/aes/aes_impl.c:1.7 src/sys/crypto/aes/aes_impl.c:1.8 --- src/sys/crypto/aes/aes_impl.c:1.7 Sat Jul 25 22:36:42 2020 +++ src/sys/crypto/aes/aes_impl.c Sat Jul 25 22:42:03 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: aes_impl.c,v 1.7 2020/07/25 22:36:42 riastradh Exp $ */ +/* $NetBSD: aes_impl.c,v 1.8 2020/07/25 22:42:03 riastradh Exp $ */ /*- * Copyright (c) 2020 The NetBSD Foundation, Inc. @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(1, "$NetBSD: aes_impl.c,v 1.7 2020/07/25 22:36:42 riastradh Exp $"); +__KERNEL_RCSID(1, "$NetBSD: aes_impl.c,v 1.8 2020/07/25 22:42:03 riastradh Exp $"); #include <sys/types.h> #include <sys/kernel.h> @@ -111,7 +111,7 @@ aes_select(void) if (aes_impl == NULL) panic("AES self-tests failed"); - aprint_normal("aes: %s\n", aes_impl->ai_name); + aprint_verbose("aes: %s\n", aes_impl->ai_name); return 0; }