[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/17] crypto: Rename cipher include files to .inc.c
From: |
Richard Henderson |
Subject: |
[PATCH 04/17] crypto: Rename cipher include files to .inc.c |
Date: |
Wed, 12 Aug 2020 20:25:24 -0700 |
QEMU standard procedure for included c files is to use *.inc.c.
E.g. there are a different set of checks that are applied.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
crypto/{cipher-builtin.c => cipher-builtin.inc.c} | 0
crypto/{cipher-gcrypt.c => cipher-gcrypt.inc.c} | 0
crypto/{cipher-nettle.c => cipher-nettle.inc.c} | 0
crypto/cipher.c | 6 +++---
4 files changed, 3 insertions(+), 3 deletions(-)
rename crypto/{cipher-builtin.c => cipher-builtin.inc.c} (100%)
rename crypto/{cipher-gcrypt.c => cipher-gcrypt.inc.c} (100%)
rename crypto/{cipher-nettle.c => cipher-nettle.inc.c} (100%)
diff --git a/crypto/cipher-builtin.c b/crypto/cipher-builtin.inc.c
similarity index 100%
rename from crypto/cipher-builtin.c
rename to crypto/cipher-builtin.inc.c
diff --git a/crypto/cipher-gcrypt.c b/crypto/cipher-gcrypt.inc.c
similarity index 100%
rename from crypto/cipher-gcrypt.c
rename to crypto/cipher-gcrypt.inc.c
diff --git a/crypto/cipher-nettle.c b/crypto/cipher-nettle.inc.c
similarity index 100%
rename from crypto/cipher-nettle.c
rename to crypto/cipher-nettle.inc.c
diff --git a/crypto/cipher.c b/crypto/cipher.c
index 2722dc7d87..deae82c264 100644
--- a/crypto/cipher.c
+++ b/crypto/cipher.c
@@ -151,11 +151,11 @@ qcrypto_cipher_munge_des_rfb_key(const uint8_t *key,
#endif /* CONFIG_GCRYPT || CONFIG_NETTLE */
#ifdef CONFIG_GCRYPT
-#include "cipher-gcrypt.c"
+#include "cipher-gcrypt.inc.c"
#elif defined CONFIG_NETTLE
-#include "cipher-nettle.c"
+#include "cipher-nettle.inc.c"
#else
-#include "cipher-builtin.c"
+#include "cipher-builtin.inc.c"
#endif
QCryptoCipher *qcrypto_cipher_new(QCryptoCipherAlgorithm alg,
--
2.25.1
- [PATCH 01/17] crypto: Move QCryptoCipher typedef to qemu/typedefs.h, (continued)
[PATCH 02/17] crypto: Move QCryptoCipherDriver typedef to qemu/typedefs.h, Richard Henderson, 2020/08/12
[PATCH 03/17] crypto: Assume blocksize is a power of 2, Richard Henderson, 2020/08/12
[PATCH 04/17] crypto: Rename cipher include files to .inc.c,
Richard Henderson <=
[PATCH 05/17] crypto: Remove redundant includes, Richard Henderson, 2020/08/12
[PATCH 06/17] crypto/nettle: Fix xts_encrypt arguments, Richard Henderson, 2020/08/12
[PATCH 07/17] crypto: Use the correct const type for driver, Richard Henderson, 2020/08/12