We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e665cc8 + abaa19e commit d16f68fCopy full SHA for d16f68f
1 file changed
wolfcrypt/src/port/intel/quickassist.c
@@ -121,9 +121,16 @@ static pthread_mutex_t g_Hwlock = PTHREAD_MUTEX_INITIALIZER;
121
typedef struct qatCapabilities {
122
/* capabilities */
123
word32 supPartial:1;
124
+#ifdef QAT_V2
125
word32 supSha3:1;
126
+#endif
127
} qatCapabilities_t;
-static qatCapabilities_t g_qatCapabilities = {0};
128
+static qatCapabilities_t g_qatCapabilities = {
129
+ 0
130
+ #ifdef QAT_V2
131
+ , 0
132
+ #endif
133
+};
134
135
136
#if defined(QAT_ENABLE_CRYPTO) || defined(QAT_ENABLE_HASH)
0 commit comments