Commit 9ecf5ad5 authored by Hans de Goede's avatar Hans de Goede Committed by Herbert Xu

crypto: sha256 - Add missing MODULE_LICENSE() to lib/crypto/sha256.c

lib/crypto/sha256.c / lib/crypto/libsha256.o may end up being a module,
so it needs a MODULE_LICENSE() line, add this.
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent c03a5093
......@@ -13,6 +13,7 @@
#include <linux/bitops.h>
#include <linux/export.h>
#include <linux/module.h>
#include <linux/string.h>
#include <crypto/sha256.h>
#include <asm/unaligned.h>
......@@ -314,3 +315,5 @@ int sha224_final(struct sha256_state *sctx, u8 *out)
return __sha256_final(sctx, out, 7);
}
EXPORT_SYMBOL(sha224_final);
MODULE_LICENSE("GPL");
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment