diff options
| author | jmcneill <jmcneill@NetBSD.org> | 2022-11-05 17:36:33 +0000 |
|---|---|---|
| committer | jmcneill <jmcneill@NetBSD.org> | 2022-11-05 17:36:33 +0000 |
| commit | 39c58ecc68fab613a0f5c4e6161ff287fd48e2ac (patch) | |
| tree | 340c9e141128cee6d2f12abe24fdf5718aed6b7b /sys | |
| parent | cb1fea7b2061eaa056cc52bfaea8ccf08551d8f7 (diff) | |
Make aes and chacha prints debug only.
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/crypto/aes/aes_impl.c | 6 | ||||
| -rw-r--r-- | sys/crypto/chacha/chacha_impl.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/crypto/aes/aes_impl.c b/sys/crypto/aes/aes_impl.c index c1f8e7a1cb6..b3dd805f994 100644 --- a/sys/crypto/aes/aes_impl.c +++ b/sys/crypto/aes/aes_impl.c @@ -1,4 +1,4 @@ -/* $NetBSD: aes_impl.c,v 1.9 2020/07/27 20:45:15 riastradh Exp $ */ +/* $NetBSD: aes_impl.c,v 1.10 2022/11/05 17:36:33 jmcneill 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.9 2020/07/27 20:45:15 riastradh Exp $"); +__KERNEL_RCSID(1, "$NetBSD: aes_impl.c,v 1.10 2022/11/05 17:36:33 jmcneill Exp $"); #include <sys/types.h> #include <sys/kernel.h> @@ -121,7 +121,7 @@ aes_select(void) if (aes_impl == NULL) panic("AES self-tests failed"); - aprint_verbose("aes: %s\n", aes_impl->ai_name); + aprint_debug("aes: %s\n", aes_impl->ai_name); return 0; } diff --git a/sys/crypto/chacha/chacha_impl.c b/sys/crypto/chacha/chacha_impl.c index 14ba0912110..d378229ea6f 100644 --- a/sys/crypto/chacha/chacha_impl.c +++ b/sys/crypto/chacha/chacha_impl.c @@ -1,4 +1,4 @@ -/* $NetBSD: chacha_impl.c,v 1.3 2020/07/27 20:49:10 riastradh Exp $ */ +/* $NetBSD: chacha_impl.c,v 1.4 2022/11/05 17:36:33 jmcneill Exp $ */ /*- * Copyright (c) 2020 The NetBSD Foundation, Inc. @@ -84,7 +84,7 @@ chacha_select(void) chacha_impl = chacha_md_impl; } - aprint_verbose("chacha: %s\n", chacha_impl->ci_name); + aprint_debug("chacha: %s\n", chacha_impl->ci_name); return 0; } |
