Module Name: src
Committed By: rillig
Date: Sun Jun 16 16:30:53 UTC 2024
Modified Files:
src/sys/crypto/aes/arch/x86: aes_via.c
Log Message:
sys/aes_via: fix broken link in comment
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/crypto/aes/arch/x86/aes_via.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/arch/x86/aes_via.c
diff -u src/sys/crypto/aes/arch/x86/aes_via.c:1.8 src/sys/crypto/aes/arch/x86/aes_via.c:1.9
--- src/sys/crypto/aes/arch/x86/aes_via.c:1.8 Sun Jun 16 16:11:17 2024
+++ src/sys/crypto/aes/arch/x86/aes_via.c Sun Jun 16 16:30:52 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: aes_via.c,v 1.8 2024/06/16 16:11:17 christos Exp $ */
+/* $NetBSD: aes_via.c,v 1.9 2024/06/16 16:30:52 rillig Exp $ */
/*-
* Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: aes_via.c,v 1.8 2024/06/16 16:11:17 christos Exp $");
+__KERNEL_RCSID(1, "$NetBSD: aes_via.c,v 1.9 2024/06/16 16:30:52 rillig Exp $");
#ifdef _KERNEL
#include <sys/types.h>
@@ -857,7 +857,7 @@ aesvia_probe(void)
#else
/*
* From the VIA PadLock Programming Guide:
- * http://linux.via.com.tw/support/beginDownload.action?eleid=181&fid=261
+ * https://web.archive.org/web/20220104214041/http://linux.via.com.tw/support/beginDownload.action?eleid=181&fid=261
*/
unsigned eax, ebx, ecx, edx;
if (!__get_cpuid(0, &eax, &ebx, &ecx, &edx))