26 lines
622 B
Diff
26 lines
622 B
Diff
|
From ec4c5378faf4ab331d56706d58e112c14ec45396 Mon Sep 17 00:00:00 2001
|
||
|
From: Arjan van de Ven <arjan@linux.intel.com>
|
||
|
Date: Wed, 7 Dec 2016 17:50:05 -0600
|
||
|
Subject: [PATCH 15/22] crypto: allow testmgr to be skipped
|
||
|
|
||
|
---
|
||
|
crypto/testmgr.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
|
||
|
index 62dffa00..197e9c53 100644
|
||
|
--- a/crypto/testmgr.c
|
||
|
+++ b/crypto/testmgr.c
|
||
|
@@ -36,7 +36,7 @@
|
||
|
|
||
|
#include "internal.h"
|
||
|
|
||
|
-static bool notests;
|
||
|
+static bool notests = true;
|
||
|
module_param(notests, bool, 0644);
|
||
|
MODULE_PARM_DESC(notests, "disable crypto self-tests");
|
||
|
|
||
|
--
|
||
|
2.11.0
|
||
|
|