From d2f1b8f4d2975ca1ec3e7519f9d755af40f357e0 Mon Sep 17 00:00:00 2001 From: Xin LI Date: Fri, 27 Jun 2014 21:33:15 +0000 Subject: [PATCH] =?UTF-8?q?Use=20Intel's=20official=20name=20(Secure=20Key?= =?UTF-8?q?)=20per=20Intel=C2=AE=20Digital=20Random=20Number=20Generator?= =?UTF-8?q?=20(DRNG)=20Software=20Implementation=20Guide.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed by: kib Approved by: so MFC after: 2 weeks --- sys/dev/random/ivy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/random/ivy.c b/sys/dev/random/ivy.c index 9b4001692ada..cb82adc47f7e 100644 --- a/sys/dev/random/ivy.c +++ b/sys/dev/random/ivy.c @@ -56,7 +56,7 @@ __FBSDID("$FreeBSD$"); static int random_ivy_read(void *, int); static struct random_hardware_source random_ivy = { - .ident = "Hardware, Intel IvyBridge+ RNG", + .ident = "Hardware, Intel Secure Key RNG", .source = RANDOM_PURE_RDRAND, .read = random_ivy_read };