crypto: add header include guards
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Tue, 23 Jul 2019 11:43:43 +0000 (20:43 +0900)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 2 Aug 2019 04:44:02 +0000 (14:44 +1000)
Add header include guards in case they are included multiple times.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
include/crypto/sha1_base.h
include/crypto/sha256_base.h
include/crypto/sha512_base.h
include/crypto/sm3_base.h
include/uapi/linux/cryptouser.h

index 63c14f2dc7bdadfb75aba7cf1a21386610472748..20fd1f7468aff4c26c21574f8d7c26570005c8c9 100644 (file)
@@ -5,6 +5,9 @@
  * Copyright (C) 2015 Linaro Ltd <ard.biesheuvel@linaro.org>
  */
 
+#ifndef _CRYPTO_SHA1_BASE_H
+#define _CRYPTO_SHA1_BASE_H
+
 #include <crypto/internal/hash.h>
 #include <crypto/sha.h>
 #include <linux/crypto.h>
@@ -101,3 +104,5 @@ static inline int sha1_base_finish(struct shash_desc *desc, u8 *out)
        *sctx = (struct sha1_state){};
        return 0;
 }
+
+#endif /* _CRYPTO_SHA1_BASE_H */
index 59159bc944f5a2166a49e4dead03fe0a99fc4ede..b50a035a2bc789fb6351993d999587f17d0b715d 100644 (file)
@@ -5,6 +5,9 @@
  * Copyright (C) 2015 Linaro Ltd <ard.biesheuvel@linaro.org>
  */
 
+#ifndef _CRYPTO_SHA256_BASE_H
+#define _CRYPTO_SHA256_BASE_H
+
 #include <crypto/internal/hash.h>
 #include <crypto/sha.h>
 #include <linux/crypto.h>
@@ -123,3 +126,5 @@ static inline int sha256_base_finish(struct shash_desc *desc, u8 *out)
        *sctx = (struct sha256_state){};
        return 0;
 }
+
+#endif /* _CRYPTO_SHA256_BASE_H */
index 099be8027f3f2da796a30beec62fa61062dfa5c3..fb19c77494dc8b57e07cb69db6d1aa5d6c68af87 100644 (file)
@@ -5,6 +5,9 @@
  * Copyright (C) 2015 Linaro Ltd <ard.biesheuvel@linaro.org>
  */
 
+#ifndef _CRYPTO_SHA512_BASE_H
+#define _CRYPTO_SHA512_BASE_H
+
 #include <crypto/internal/hash.h>
 #include <crypto/sha.h>
 #include <linux/crypto.h>
@@ -126,3 +129,5 @@ static inline int sha512_base_finish(struct shash_desc *desc, u8 *out)
        *sctx = (struct sha512_state){};
        return 0;
 }
+
+#endif /* _CRYPTO_SHA512_BASE_H */
index 31891b0dc7e327a33d927cd8974d2d68cd762c63..1cbf9aa1fe5244f629e49894e339f9beb2f0513e 100644 (file)
@@ -6,6 +6,9 @@
  * Written by Gilad Ben-Yossef <gilad@benyossef.com>
  */
 
+#ifndef _CRYPTO_SM3_BASE_H
+#define _CRYPTO_SM3_BASE_H
+
 #include <crypto/internal/hash.h>
 #include <crypto/sm3.h>
 #include <linux/crypto.h>
@@ -104,3 +107,5 @@ static inline int sm3_base_finish(struct shash_desc *desc, u8 *out)
        *sctx = (struct sm3_state){};
        return 0;
 }
+
+#endif /* _CRYPTO_SM3_BASE_H */
index 4dc1603919ce85ee1536bf7cdaa2769f9d45018a..5730c67f0617c5f3f8b7b4a0e4c11a2ab00d7dd0 100644 (file)
@@ -19,6 +19,9 @@
  * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
+#ifndef _UAPI_LINUX_CRYPTOUSER_H
+#define _UAPI_LINUX_CRYPTOUSER_H
+
 #include <linux/types.h>
 
 /* Netlink configuration messages.  */
@@ -198,3 +201,5 @@ struct crypto_report_acomp {
 
 #define CRYPTO_REPORT_MAXSIZE (sizeof(struct crypto_user_alg) + \
                               sizeof(struct crypto_report_blkcipher))
+
+#endif /* _UAPI_LINUX_CRYPTOUSER_H */